-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
44 lines (41 loc) · 1.17 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGELOG = open(os.path.join(here, 'CHANGELOG.rst')).read()
requires = [
'boto==2.38.0',
'moto==0.4.10',
'Zambi==1.0',
'nvlib==1.0',
'ipaddr==2.1.11',
]
setup(
name='C3',
package=['C3'],
version='0.2',
description='C3 - Provisions AWS services from easy to read ini configs',
long_description=README + '\n\n' + CHANGELOG,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Intended Audience :: System Administrators ",
],
scripts=[
'scripts/c3ec2.py',
'scripts/c3s3.py',
'scripts/c3nv2route53.py',
],
author='Jesse Escobedo',
author_email='jesse@moda.bz',
url='https://github.com/CityGrid/c3',
license='Apache',
keywords='C3 AWS automation cloud devops',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite='nose.collector',
)