mongoprof/setup.py
2015-06-16 17:29:55 -04:00

15 lines
412 B
Python

from distutils.core import setup
setup(
name='mongoprof',
version='0.2.0',
author='James Turk',
author_email='james.p.turk@gmail.com',
url='http://github.com/jamesturk/mongoprof',
scripts=['mongoprof.py'],
license='BSD',
description='command line tool for watching mongodb queries',
long_description=open('README.md').read(),
install_requires=['pymongo', 'termcolor'],
)