-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
executable file
·41 lines (39 loc) · 1.29 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
39
40
41
#!/usr/bin/env python
import glob
from setuptools import setup, find_packages
setup(
name="domovoi",
version="2.0.2",
url='https://github.com/kislyuk/domovoi',
license='Apache Software License',
author='Andrey Kislyuk',
author_email='[email protected]',
description='AWS Lambda event handler manager',
long_description=open('README.rst').read(),
install_requires=[
'boto3 >= 1.7.19, < 2',
'chalice >= 1.3.0, < 2'
],
extras_require={
':python_version == "2.7"': ['enum34 >= 1.1.6, < 2']
},
packages=find_packages(exclude=['test']),
scripts=glob.glob('scripts/*'),
platforms=['MacOS X', 'Posix'],
package_data={'domovoi': ['*.json']},
zip_safe=False,
include_package_data=True,
test_suite='test',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)