-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathsetup.ocm.py
More file actions
63 lines (54 loc) · 1.47 KB
/
setup.ocm.py
File metadata and controls
63 lines (54 loc) · 1.47 KB
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
import setuptools
import os
own_dir = os.path.abspath(os.path.dirname(__file__))
def requirements():
with open(os.path.join(own_dir, 'requirements.ocm.txt')) as f:
for line in f.readlines():
line = line.strip()
if not line or line.startswith('#'):
continue
yield line
def version():
version_path = os.environ.get(
'version_file',
os.path.join(own_dir, 'ocm', 'VERSION'),
)
with open(version_path) as f:
return f.read().strip()
setuptools.setup(
name='gardener-ocm', # todo: switch to `ocm-lib` once we have support for different versions
version=version(),
description='Open-Component-Model (OCM) language bindings',
long_description='Open-Component_model (OCM) language bindings',
long_description_content_type='text/markdown',
python_requires='>=3.11',
py_modules=(
'gziputil',
'ioutil',
'reutil',
'tarutil',
'version',
),
packages=(
'cnudie',
'ctt',
'ocm',
),
package_data={
'ctt': (
'simple-cfg',
'README',
),
'ocm': (
'VERSION',
'ocm-component-descriptor-schema.yaml',
),
},
install_requires=list(requirements()),
entry_points={
'console_scripts': [
'gardener-ocm = ocm.__main__:main', # backwards-compatibility
'ocm = ocm.__main__:main',
],
},
)