-
Notifications
You must be signed in to change notification settings - Fork 59
/
setup.py
34 lines (32 loc) · 1.2 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
""" Setup script for PyPI """
import os
from setuptools import setup
try:
from ConfigParser import SafeConfigParser
except ImportError:
from configparser import SafeConfigParser
settings = SafeConfigParser()
settings.read(os.path.realpath('aws_ec2_assign_elastic_ip/settings.conf'))
setup(
name='aws-ec2-assign-elastic-ip',
version=settings.get('general', 'version'),
license='Apache License, Version 2.0',
description='Automatically assign Elastic IPs to AWS EC2 instances',
author='Sebastian Dahlgren, Skymill Solutions',
author_email='[email protected]',
url='https://github.com/skymill/aws-ec2-assign-elastic-ip',
keywords="aws amazon web services ec2 as elasticip eip",
platforms=['Any'],
packages=['aws_ec2_assign_elastic_ip'],
scripts=['aws-ec2-assign-elastic-ip'],
include_package_data=True,
zip_safe=False,
install_requires=['boto3 >= 1.0.0', 'netaddr >= 0.7.12', 'ec2-metadata >= 1.8.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python'
]
)