-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (48 loc) · 1.56 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
#!/usr/bin/env python
import codecs
import os
from setuptools import find_packages
from setuptools import setup
ROOT_DIR = os.path.dirname(__file__)
SOURCE_DIR = os.path.join(ROOT_DIR)
install_requires = [
"kubernetes==29.0.0",
"configargparse",
"hera_utils==0.2.0",
]
dependency_links = [
"git+https://github.com/VCityTeam/hera_utils.git#egg=hera_utils-0.2.0"
]
version = None
exec(open("hera_k8s_utils/version.py").read())
long_description = ""
with codecs.open("./README.md", encoding="utf-8") as readme_md:
long_description = readme_md.read()
setup(
name="hera_k8s_utils",
version=version,
description="K8s helpers for Hera (workflows) usage",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/VCityTeam/ExpeData-Workflows_testing/hera_utils",
project_urls={
"Source": "https://github.com/VCityTeam/hera_k8s_utils",
"Tracker": "https://github.com/VCityTeam/hera_k8s_utils",
},
packages=find_packages(exclude=["tests.*", "tests"]),
python_requires=">=3.10",
install_requires=install_requires,
dependency_links=dependency_links,
zip_safe=False,
classifiers=[
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Topic :: Utilities",
],
maintainer="vcity_devel",
maintainer_email="[email protected]",
)