-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
43 lines (41 loc) · 1.6 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
from setuptools import setup, find_namespace_packages
with open(
"metaflow_extensions/netflix_ext/toplevel/netflixext_version.py", mode="r"
) as f:
version = f.read().splitlines()[0].split("=")[1].strip(" \"'")
setup(
name="metaflow-netflixext",
version=version,
description="Metaflow extensions from Netflix",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="Apache Software License",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
project_urls={
"Source": "https://github.com/Netflix/metaflow-nflx-extensions",
"Tracker": "https://github.com/Netflix/metaflow-nflx-extensions/issues",
},
author="Netflix Metaflow Developers",
author_email="metaflow-dev@netflix.com",
packages=find_namespace_packages(include=["metaflow_extensions.*"]),
py_modules=[
"metaflow_extensions",
],
package_data={
"metaflow_extensions.netflix_ext.plugins.conda.resources": ["*.png", "*.svg"]
},
python_requires=">=3.7.2",
install_requires=["metaflow>=2.12.29"],
)