-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
48 lines (42 loc) · 1.29 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
import sys
from setuptools import setup, find_packages
requires = [
'flask',
'pymongo',
'wtforms',
'pytz',
]
if sys.version_info < (2, 7):
requires.append('argparse')
setup(
name='professor',
version='0.1',
description='Painless MongoDB Profiling',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Testing',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
],
author='Dan Crosta',
author_email='[email protected]',
url='https://github.com/dcrosta/professor',
keywords='mongodb profiling',
install_requires=requires,
tests_require=['nose', 'coverage'],
# this enables the "setup.py nosetests" command
setup_requires=['nose'],
packages=find_packages(),
entry_points={
'console_scripts': [ 'profess=professor.scripts:profess' ],
},
)