mongoprof/setup.py

15 lines
422 B
Python
Raw Normal View History

2012-06-25 19:34:19 +00:00
from distutils.core import setup
setup(
name='mongoprof',
2013-07-30 20:32:12 +00:00
version='0.2.0',
2012-06-25 19:34:19 +00:00
author='James Turk',
author_email='jturk@sunlightfoundation.com',
url='http://github.com/sunlightlabs/mongoprof',
scripts=['mongoprof.py'],
license='BSD',
description='command line tool for watching mongodb queries',
long_description=open('README.rst').read(),
install_requires=['pymongo', 'termcolor'],
)