forked from aio-libs/aiobotocore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
75 lines (60 loc) · 2.23 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import os
import re
import sys
from setuptools import setup, find_packages
# aiohttp requirement is pegged as we need to manually ensure that
# https://github.com/aio-libs/aiobotocore/pull/248 will continue working
# If adding requirements make sure to also add to requirements-dev.txt
install_requires = [
'botocore>=1.8.0, <=1.8.21',
# for now we depend on internals of aiohttp so this range can't be open
'aiohttp>=3.1.0, <3.2.0',
'multidict>=2.1.4',
'wrapt>=1.10.10',
'packaging>=16.8',
]
PY_VER = sys.version_info
if not PY_VER >= (3, 5, 3):
raise RuntimeError("aiobotocore doesn't support Python earlier than 3.5")
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
extras_require = {
'awscli': ['awscli>=1.12.0, <=1.14.17'],
'boto3': ['boto3==1.5.7'],
}
def read_version():
regexp = re.compile(r"^__version__\W*=\W*'([\d.abrc]+)'")
init_py = os.path.join(os.path.dirname(__file__),
'aiobotocore', '__init__.py')
with open(init_py) as f:
for line in f:
match = regexp.match(line)
if match is not None:
return match.group(1)
else:
raise RuntimeError('Cannot find version in '
'aiobotocore/__init__.py')
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Environment :: Web Environment',
'Development Status :: 3 - Alpha',
'Framework :: AsyncIO',
]
setup(name='aiobotocore',
version=read_version(),
description='Async client for aws services using botocore and aiohttp',
long_description='\n\n'.join((read('README.rst'), read('CHANGES.txt'))),
classifiers=classifiers,
author="Nikolay Novik",
author_email="[email protected]",
url='https://github.com/aio-libs/aiobotocore',
download_url='https://pypi.python.org/pypi/aiobotocore',
license='Apache 2',
packages=find_packages(),
install_requires=install_requires,
extras_require=extras_require,
include_package_data=True)