forked from orchest/orchest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (45 loc) · 1.52 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
47
48
from pathlib import Path
import setuptools
# The long_description field is used by PyPI when you publish a package,
# to build its project page.
long_description = Path("README.md").read_text(encoding="utf-8")
version = Path("orchestcli/_version.py").read_text(encoding="utf-8")
about = {}
exec(version, about)
setuptools.setup(
name="orchest-cli",
description="CLI for Orchest",
keywords="orchest",
version=about["__version__"],
license="Apache 2.0",
author="Rick Lamers",
author_email="[email protected]",
url="https://github.com/orchest/orchest",
project_urls={
"Documentation": ("https://docs.orchest.io/en/stable/"),
"Source Code": ("https://github.com/orchest/orchest/tree/master/orchest-cli"),
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Topic :: Utilities",
],
packages=setuptools.find_packages(),
install_requires=[
"click>=8.0.0", # implies python >= 3.6
"kubernetes>=21.7.0",
"requests", # required by kubernetes as well
],
entry_points={
"console_scripts": [
"orchest=orchestcli.cli:cli",
],
},
# It is reasonable to follow:
# https://numpy.org/neps/nep-0029-deprecation_policy.html#support-table
python_requires=">=3.8",
)