-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (23 loc) · 1016 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (23 loc) · 1016 Bytes
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
from distutils.core import setup
setup(name = 'kujenga',
version = '0.2.0',
packages = ["kujenga"],
install_requires = ['boto3', 'fabric'],
author = 'Don MacMillen',
author_email = 'don@macmillen.net',
url = 'https://github.com/macd/kujenga',
description = "Ultra-lightweight EC2 ami builds from json recipes",
license = 'MIT',
keywords = 'Amazon EC2, Boto3, Fabric',
scripts = ["bin/kujenga"],
zip_safe = True,
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development',
],
)