forked from gardener/cc-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.base.py
43 lines (34 loc) · 968 Bytes
/
setup.base.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
import setuptools
import os
own_dir = os.path.abspath(os.path.dirname(__file__))
def requirements():
in_list = ('yaml', 'yamllint', 'termcolor', 'urllib', 'elasticsearch')
with open(os.path.join(own_dir, 'requirements.txt')) as f:
for line in f.readlines():
line = line.strip()
if not line or line.startswith('#'):
continue
if any(s in line for s in in_list):
yield line
def modules():
return [
'util',
'ctx',
]
def version():
with open(os.path.join(own_dir, 'VERSION')) as f:
return f.read().strip()
setuptools.setup(
name='gardener-cicd-base',
version=version(),
description='Gardener CI/CD Base Libraries',
python_requires='>=3.8.*',
py_modules=modules(),
packages=['ccc', 'ci', 'model'],
package_data={
'ci':['version'],
},
install_requires=list(requirements()),
entry_points={
},
)