forked from argoproj-labs/hera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (44 loc) · 1.53 KB
/
setup.py
File metadata and controls
47 lines (44 loc) · 1.53 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
from setuptools import find_namespace_packages, setup
VERSION = open('VERSION').read().strip()
LONG_DESCRIPTION = open('README.md').read()
setup(
name='hera-workflows',
version=VERSION,
description='Hera is a Python framework for constructing and submitting Argo Workflows. The main goal of Hera is '
'to make Argo Workflows more accessible by abstracting away some setup that is typically necessary '
'for constructing Argo workflows.',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/argoproj-labs/hera-workflows",
project_urls={
"Bug Tracker": "https://github.com/argoproj-labs/hera-workflows/issues",
},
author="Flaviu Vadan",
author_email="flaviu.vadan@dynotx.com",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
],
packages=["hera"],
package_dir={'': 'src'},
package_data={
'hera': ['py.typed'],
},
data_files=[('', ['VERSION', 'README.md', 'CHANGELOG.md', 'LICENSE'])],
include_package_data=True,
python_requires='>=3.7',
install_requires=[
"argo-workflows==6.3.0rc2",
"pydantic",
"python-dateutil",
"urllib3",
"certifi",
"pytz"
],
zip_safe=False
)