-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.06 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
from setuptools import find_packages, setup
from mario import __version__
# load readme
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="mario",
version=__version__,
description="Make kubeflow pipelines intuitive.",
packages=find_packages(exclude=["tests"]),
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["kfp", "kubernetes", "PyYAML"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
],
keywords="kubeflow pipeline",
license="MIT",
)