forked from severb/flowy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.22 KB
/
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
30
31
32
33
34
35
36
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
setup(
name='flowy',
version='0.3.2',
description="Python library for Amazon Simple Workflow Service",
long_description=open('README.rst').read(),
keywords='AWS SWF workflow',
author='Sever Banesiu',
author_email='[email protected]',
url='https://github.com/pbs/flowy',
license='MIT License',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
setup_requires=['nose', 'setuptools_git', 'wheel'],
install_requires=['boto==2.33.0', 'venusian>=1.0a8'],
tests_require=['coverage'],
test_suite="nose.collector",
extras_require={'docs': ['sphinx', 'sphinx_rtd_theme']},
entry_points={
"console_scripts": [
"flowy = flowy.__main__:main"
]
},
classifiers = ["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4"],
)