-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (30 loc) · 952 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
# -*- coding: utf8 -*-
# See http://www.mongodb.org/display/DOCS/Database+Profiler
from distutils.core import setup
import os, sys
reload(sys).setdefaultencoding("UTF-8")
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='mongo-profile',
version='0.4.1',
author='NetAngels',
author_email='[email protected]',
py_modules=['mongoprofile',],
url='http://github.com/NetAngels/mongo-profile',
license = 'BSD License',
description = u'MongoDB profile helper',
long_description = read('README.rst'),
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Database',
),
)