-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.12 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 setup, find_namespace_packages
version = "0.0.4"
setup(
name="metaflow-slurm",
version=version,
description="Slurm extension for Metaflow",
long_description=open("README.md").read(),
author="Outerbounds",
author_email="[email protected]",
long_description_content_type="text/markdown",
license="Apache Software License",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
],
packages=find_namespace_packages(include=["metaflow_extensions.*"]),
py_modules=[
"metaflow_extensions",
],
python_requires=">=3.8",
install_requires=["asyncssh>=2.15.0"],
)