forked from Netflix/metaflow
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
46 lines (44 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
from setuptools import setup, find_packages
version = "2.5.4"
setup(
include_package_data=True,
name="zillow-metaflow",
version=version,
description="Metaflow: More Data Science, Less Engineering",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Machine Learning Infrastructure Team at Netflix",
author_email="[email protected]",
license="Apache License 2.0",
packages=find_packages(exclude=["metaflow_test"]),
py_modules=["metaflow", "kfp"],
package_data={"metaflow": ["tutorials/*/*"]},
entry_points="""
[console_scripts]
metaflow=metaflow.main_cli:main
""",
install_requires=[
"requests",
"boto3",
"pylint",
# required for KFP
"Deprecated>=1.2.7,<2",
"docstring-parser>=0.7.3,<1",
"fire>=0.3.1,<1",
"googleapis-common-protos>=1.6.0,<2",
"jsonschema>=4.19.2,<5",
"kfp-pipeline-spec>=0.1.13,<0.2.0",
"kfp-server-api>=1.1.2,<2.0.0",
"kubernetes>=8.0.0,<27",
"protobuf>=3.13.0,<4",
"pyyaml>=5.3,<7",
# AIP-8457(talebz): WFSDK requests-toolbelt dependency breaks KFNB "pip install poetry"
# "requests-toolbelt>=0.8.0,<1",
# "uritemplate>=3.0.1,<4",
],
tests_require=["coverage"],
extras_require={
# Use an extras here as there is no "extras_tests_require" functionality :(
"aip-tests": ["pytest", "pytest-xdist", "pytest-cov", "subprocess-tee"],
},
)