forked from docker-archive/dockercloud-haproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (40 loc) · 1.31 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
import codecs
import os
import re
from setuptools import setup, find_packages
requirements = [
"python-dockercloud >= 1.0.3, < 2",
"docker-compose >= 1.6.0, <2"
]
def read(*parts):
path = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(path, encoding='utf-8') as fobj:
return fobj.read()
def find_version(*file_paths):
version_file = read(*file_paths)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError('Unable to find version string.')
with open('./test-requirements.txt') as test_reqs_txt:
test_requirements = [line for line in test_reqs_txt]
setup(
name='dockercloud-haproxy',
version=find_version('haproxy', '__init__.py'),
packages=find_packages(),
install_requires=requirements,
tests_require=test_requirements,
entry_points={
'console_scripts':
['dockercloud-haproxy = haproxy.main:main']
},
include_package_data=True,
author='Docker, Inc.',
author_email='[email protected]',
description='Auto self-configured haproxy on Docker Cloud',
license='Apache v2',
keywords='docker cloud haproxy',
url='http://cloud.docker.com/',
test_suite='tests',
)