forked from jwilder/mongodb-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 792 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
version='0.1'
packages = find_packages(exclude=['ez_setup', 'examples', 'tests'])
print packages
setup(
name='mongodbtools',
version=version,
description='Python tools for working with MongoDB',
author='Jason Wilder',
author_email='[email protected]',
maintainer='Jason Wilder',
license='MIT',
url='http://github.com/jwilder/mongodb-tools',
packages=packages,
entry_points = """\
[console_scripts]
collection-stats=mongodbtools.collection_stats:main
index-stats=mongodbtools.index_stats:main
redundant-indexes=mongodbtools.redundant_indexes:main
""",
install_requires=[
'pymongo>=2.1',
'PrettyTable',
'psutil==0.3.0',
'mongoengine==0.5.0'
],
)