This repository has been archived by the owner on Aug 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
executable file
·67 lines (55 loc) · 1.69 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/python
"""Setup definition for dockpulp.
To install:
python setup.py install
To install in development mode:
python setup.py develop
For a comprehensive usage explanation:
python setup.py --help
"""
import sys
import io
import os
import re
from setuptools import setup
def _simplejson_on_python26():
if (sys.version_info[0] > 2 or
(sys.version_info[0] == 2 and
sys.version_info[1] > 6)):
return []
return ['simplejson']
def _read(*names, **kwargs):
with io.open(
os.path.join(os.path.dirname(__file__), *names),
encoding=kwargs.get("encoding", "utf8")
) as fp:
return fp.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.")
install_requires = ['requests']
install_requires.extend(_simplejson_on_python26())
setup(
name="dockpulp",
version=_find_version("dockpulp", "__init__.py"),
author="Jay Greguske",
author_email="[email protected]",
description=("ReST API Client to Pulp for manipulating docker images"),
license="GPLv3",
url="https://github.com/release-engineering/dockpulp.git",
package_dir={'': '.'},
packages=['dockpulp'],
install_requires=install_requires,
scripts=[
'bin/dock-pulp',
'bin/dock-pulp-bootstrap',
'bin/dock-pulp-restore',
'bin/dock-pulp-recreate-hidden',
],
package_data={'': ['conf/dockpulp.conf', 'conf/dockpulpdistributors.json']},
test_suite="tests",
)