-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (48 loc) · 1.51 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 = [
"configargparse",
"hera >= 5.6.0",
]
version = None
exec(open("hera_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_utils",
version=version,
description="Helpers for Hera (workflows) Python framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/VCityTeam/hera_utils",
project_urls={
"Source": "https://github.com/VCityTeam/hera_utils",
"Tracker": "https://github.com/VCityTeam/hera_utils/issues",
},
packages=find_packages(exclude=["tests.*", "tests"]),
python_requires=">=3.10",
install_requires=install_requires,
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="vcity@liris.cnrs.fr",
entry_points={
"console_scripts": [
"hera-check-server=hera_utils.examples:check_server_availability",
],
},
)