forked from docker-archive/python-dockercloud
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (39 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
import codecs
import os
import re
from setuptools import setup, find_packages
requirements =[
"future >= 0.15.0, < 1",
"requests >= 2.5.2, < 3",
"six >= 1.3.0, < 2",
"websocket-client >= 0.32.0, < 1"
]
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="python-dockercloud",
version=find_version('dockercloud', '__init__.py'),
packages=find_packages(),
install_requires=requirements,
tests_require=test_requirements,
provides=['docker'],
include_package_data=True,
author="Docker, Inc.",
author_email="[email protected]",
description="Python Library for Dockercloud",
license="Apache v2",
keywords="docker cloud",
url="http://cloud.docker.com/",
test_suite="tests",
)