-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 819 Bytes
/
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
from setuptools import setup, find_namespace_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="metaflow-sample-plugin",
version="0.1.0",
author="sappier",
description="Metaflow sapmple plugin",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sappier/metaflow-sample-plugin",
install_requires=[
"metaflow>=2.5.3",
],
packages=find_namespace_packages(include=["metaflow_extensions.*"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Environment :: Console",
],
python_requires=">=3.7",
)