-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
88 lines (76 loc) · 2.31 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
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
"""
distutils/setuptools install script.
"""
import os
import re
import sys
import codecs
try:
from setuptools import setup
setup
except ImportError:
from distutils.core import setup
here=os.path.abspath(os.path.dirname(__file__))
# Read the version number from a source file.
# Why read it, and not import?
# see https://groups.google.com/d/topic/pypa-dev/0PkjVpcxTzQ/discussion
def find_version(*file_paths):
# Open in Latin-1 so that we avoid encoding errors.
# Use codecs.open for Python 2 compatibility
with codecs.open(os.path.join(here, *file_paths), 'r', 'latin1') as f:
version_file=f.read()
# The version line must have the form
# __version__='ver'
version_match=re.search(r"^__version__ = \(([^'\",]*),\s*([^'\",]*),\s*([^'\",]*).*\)",
version_file, re.M)
if version_match:
return "{}.{}.{}".format(version_match.group(1), version_match.group(2), version_match.group(3))
raise RuntimeError("Unable to find version string.")
packages = [
'boto3',
'boto3.core',
'boto3.sqs',
'boto3.utils',
]
requires = [
'botocore>=0.24.0',
'six>=1.4.0',
'jmespath>=0.1.0',
'python-dateutil>=2.1',
'bcdoc==0.12.2'
]
dependency_links = [
'git+https://github.com/boto/bcdoc.git@develop#egg=bcdoc'
]
setup(
name='boto3',
version=find_version('boto3', '__init__.py'),
description='Low-level, data-driven core of boto 3.',
long_description=open('README.rst').read(),
author='Amazon Web Services',
author_email='[email protected]',
url='https://github.com/boto/boto3',
scripts=[],
packages=packages,
package_data={
'boto3': [
'data/aws/resources/*.json',
]
},
include_package_data=True,
install_requires=requires,
dependency_links=dependency_links,
license=open("LICENSE").read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
)