-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (33 loc) · 1.33 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
#!/usr/bin/env python
import sys
from os import path
from setuptools import setup
requires = ['awscli>=1.11.0']
project_dir = path.abspath(path.dirname(__file__))
with open(path.join(project_dir, 'VERSION'), 'rb') as version:
version = version.read().decode('UTF-8').strip()
with open(path.join(project_dir, 'README.md'), 'rb') as readme:
long_description = readme.read().decode('UTF-8')
setup(
name='awscli-plugin-eucalyptus',
packages=['awscli_plugin_eucalyptus'],
version=version,
description='Eucalyptus plugin for AWS CLI',
long_description=long_description,
long_description_content_type='text/markdown',
author='Steve Jones',
author_email='[email protected]',
url='https://github.com/corymbia/eucalyptus-awscli-plugin',
keywords=['awscli', 'eucalyptus'],
install_requires=requires,
license='BSD (Simplified)',
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Topic :: Internet']
)