-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.2 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.2 KB
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
from setuptools import setup, find_packages
from afaws import __version__
requirements = []
with open('requirements.txt') as f:
requirements = [r for r in f.read().splitlines() if not r.startswith('-')]
setup(
name='afaws',
version=__version__,
license='GPLv3+',
author='Joel Dubowy',
author_email='jdubowy@gmail.com',
packages=find_packages(),
scripts=[
'bin/ec2-execute',
'bin/ec2-initialize',
'bin/ec2-launch',
'bin/ec2-network',
'bin/ec2-reboot',
'bin/ec2-resources',
'bin/ec2-shutdown',
'bin/elb-manage',
'bin/s3-download',
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.7",
"Operating System :: POSIX",
"Operating System :: MacOS"
],
package_data={},
url='https://github.com/pnwairfire/afaws',
description='Utilities for managing AWS resources.',
install_requires=requirements,
dependency_links=[
"https://pypi.airfire.org/simple/afscripting/"
],
tests_require=[]
)