This repository has been archived by the owner on Jun 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (44 loc) · 1.44 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
from setuptools import setup
from amibaker.version import VERSION
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='amibaker',
version=VERSION,
description='Automate creation of AWS AMIs.',
long_description='This tool creates temporary hosts, allows temporary ' +
'access, provisions it, creates an image from it, configures the ' +
'image, cleans up, and give you an AMI ID.',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 4 - Beta',
],
keywords=[
'aws',
'amazon web services',
'ami',
'amazon machine images',
'automation',
],
author='Hamid Nazari',
author_email='[email protected]',
maintainer='Hamid Nazari',
maintainer_email='[email protected]',
url='http://github.com/hamidnazari/amibaker',
license='MIT',
packages=['amibaker'],
entry_points={
'console_scripts': [
'amibaker = amibaker.main:main',
],
},
install_requires=required,
zip_safe=False)