mongoprof/setup.py

15 lines
412 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',
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(),
2012-06-25 19:34:19 +00:00
install_requires=['pymongo', 'termcolor'],
)