-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
40 lines (34 loc) · 1.02 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
"""-*- coding: utf-8 -*-
ECSMinion Setup
"""
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='ecsminion',
url='https://github.com/chadlung/ecsminion',
keywords=['ecsminion'],
long_description=readme,
version=read('VERSION')[0],
description='A library for interacting with the ECS 2.x Management API',
author='Chad Lung',
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'])
)