forked from aws/chalice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (53 loc) · 1.57 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
README = readme_file.read()
install_requires = [
'click>=7,<8.0',
'botocore>=1.12.86,<2.0.0',
'typing==3.6.4;python_version<"3.7"',
'mypy-extensions==0.4.3',
'six>=1.10.0,<2.0.0',
'pip>=9,<20.4',
'attrs>=19.3.0,<20.3.0',
'enum-compat>=0.0.2',
'jmespath>=0.9.3,<1.0.0',
'pyyaml>=5.3.1,<6.0.0',
'wheel',
'setuptools'
]
setup(
name='chalice',
version='1.21.7',
description="Microframework",
long_description=README,
author="James Saryerwinnie",
author_email='[email protected]',
url='https://github.com/aws/chalice',
packages=find_packages(exclude=['tests']),
install_requires=install_requires,
extras_require={
'event-file-poller': ['watchdog==0.9.0'],
},
license="Apache License 2.0",
package_data={'chalice': ['*.json', 'py.typed']},
include_package_data=True,
zip_safe=False,
keywords='chalice',
entry_points={
'console_scripts': [
'chalice = chalice.cli:main',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)