2012-06-25 19:34:19 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='mongoprof',
|
2016-11-30 06:27:30 +00:00
|
|
|
version='0.3.0',
|
2012-06-25 19:34:19 +00:00
|
|
|
author='James Turk',
|
2015-06-16 21:29:55 +00:00
|
|
|
author_email='james.p.turk@gmail.com',
|
|
|
|
url='http://github.com/jamesturk/mongoprof',
|
2012-06-25 19:34:19 +00:00
|
|
|
scripts=['mongoprof.py'],
|
|
|
|
license='BSD',
|
|
|
|
description='command line tool for watching mongodb queries',
|
2014-02-14 15:25:42 +00:00
|
|
|
long_description=open('README.md').read(),
|
2016-11-30 06:27:30 +00:00
|
|
|
install_requires=['pymongo<3', 'termcolor'],
|
2012-06-25 19:34:19 +00:00
|
|
|
)
|