-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 812 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='watchbot_progress',
version='0.9.1',
description=u"Watchbot reduce-mode helpers for python",
long_description='See https://github.com/mapbox/watchbot-progress-py',
classifiers=[],
keywords='',
author=u"Matthew Perry",
author_email='perry@mapbox.com',
url='https://github.com/mapbox/watchbot-progress-py',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
install_requires=['boto3', 'redis~=2.0'],
entry_points="""
[console_scripts]
watchbot-progress-py=watchbot_progress.cli:main
""",
extras_require={
'test': ['pytest', 'pytest-cov', 'mock', 'click', 'mockredispy', 'tox', 'coveralls']},
include_package_data=True,
zip_safe=False)