forked from fstab50/pyaws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
95 lines (78 loc) · 2.58 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
89
90
91
92
93
94
95
"""
pyaws : Copyright 2017-2018, Blake Huber
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
see: https://www.gnu.org/licenses/#GPL
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
contained in the program LICENSE file.
"""
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.develop import develop
from setuptools.command.install import install
from subprocess import check_call
from codecs import open
import pyaws
requires = [
'awscli>=1.16.100'
'boto3>=1.9.100',
'botocore',
'libtools>=0.2.5',
'distro>=1.4.0'
]
def read(fname):
basedir = os.path.dirname(sys.argv[0])
return open(os.path.join(basedir, fname)).read()
class PostInstallDevelop(develop):
""" post-install, development """
def run(self):
check_call("bash scripts/post-install-dev.sh".split())
develop.run(self)
class PostInstall(install):
"""
Post-install, production
cmdclass={
'develop': PostInstallDevelop,
'install': PostInstall,
}
"""
def run(self):
check_call("bash post-install.sh".split())
install.run(self)
setup(
name='pyaws',
version=pyaws.__version__,
description='Python Utilities for Amazon Web Services',
long_description=read('DESCRIPTION.rst'),
url='http://pyaws.readthedocs.io',
author=pyaws.__author__,
author_email=pyaws.__email__,
license='GPL-3.0',
classifiers=[
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux'
],
keywords='Amazon Web Services AWS iam ec2 lambda rds s3 sts',
packages=find_packages(exclude=['docs', 'scripts', 'assets']),
install_requires=requires,
python_requires='>=3.6, <4',
entry_points={
'console_scripts': [
'pyconfig=pyaws.cli:option_configure'
]
},
zip_safe=False
)