forked from Netflix/metaflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 661 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
version = "2.4.3"
setup(
name="metaflow",
version=version,
description="Metaflow: More Data Science, Less Engineering",
author="Machine Learning Infrastructure Team at Netflix",
author_email="help@metaflow.org",
license="Apache License 2.0",
packages=find_packages(exclude=["metaflow_test"]),
py_modules=[
"metaflow",
],
package_data={"metaflow": ["tutorials/*/*"]},
entry_points="""
[console_scripts]
metaflow=metaflow.main_cli:main
""",
install_requires=["click>=7.0", "requests", "boto3", "pylint"],
tests_require=["coverage"],
)