-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
39 lines (34 loc) · 1.2 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
37
38
from setuptools import setup, find_packages
import botoflow
requires = ['botocore>=1.1.10',
'six>=1.2.0',
'dill>=0.2',
'retrying>=1.3.3']
args = dict(
name='botoflow',
version=botoflow.__version__,
author='Amazon.com, Darjus Loktevic',
author_email='[email protected]',
description="Botoflow is an asynchronous framework for Amazon SWF that helps you "
"build SWF applications using Python",
long_description=open('README.rst').read(),
url='https://github.com/boto/botoflow',
packages=find_packages(exclude=['test*']),
scripts=[],
cmdclass={},
install_requires=requires,
license="Apache License 2.0",
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
),
)
setup(**args)