This repository has been archived by the owner on Feb 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
70 lines (60 loc) · 1.52 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
"""
Historical
==========
Allows for the tracking of AWS configuration data across accounts/regions/technologies.
"""
import os.path
from setuptools import find_packages, setup
ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))
about = {}
with open(os.path.join(ROOT, "historical", "__about__.py")) as f:
exec(f.read(), about)
install_requires = [
'boto3>=1.9.47',
'cloudaux>=1.4.14',
'click>=6.7',
'pynamodb>=3.3.1',
'deepdiff>=3.3.0',
'raven-python-lambda>=0.1.7',
'marshmallow>=2.13.5',
'swag-client==0.4.3',
'python-dateutil==2.6.1',
'Jinja2==2.10'
]
tests_require = [
'cookiecutter==1.6.0',
'pytest==3.1.3',
'pytest-cov>=2.5.1',
'mock==2.0.0',
'moto>=1.3.2',
'coveralls==1.1',
'factory-boy==2.9.2',
'tox==3.4.0',
]
setup(
name=about["__title__"],
version=about["__version__"],
author=about["__author__"],
author_email=about["__email__"],
url=about["__uri__"],
description=about["__summary__"],
long_description='See README.md',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require={
'tests': tests_require
},
entry_points={
'console_scripts': [
'historical = historical.cli:cli',
]
},
keywords=['aws', 'account_management'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)