mongoprof/setup.py
2012-06-25 15:34:19 -04:00

15 lines
422 B
Python

from distutils.core import setup
setup(
name='mongoprof',
version='0.1.0',
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'],
)