-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (46 loc) · 1.62 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
47
48
49
50
51
52
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
def read(relative):
"""
Read file contents and return a list of lines.
ie, read the VERSION file
"""
contents = open(relative, 'r').read()
return [l for l in contents.split('\n') if l != '']
with open('README.rst', 'r') as f:
readme = f.read()
setup(
name='python-ecsclient',
url='https://github.com/EMCECS/python-ecsclient',
keywords=['ecsclient'],
long_description=readme,
version=read('VERSION')[0],
description='A library for interacting with the ECS Management API',
author='ECS',
author_email='[email protected]',
tests_require=read('./test-requirements.txt'),
install_requires=read('./requirements.txt'),
test_suite='nose.collector',
zip_safe=False,
include_package_data=True,
packages=find_packages(exclude=['ez_setup']),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software 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.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)