forked from flyteorg/flytekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
102 lines (99 loc) · 3.65 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
from setuptools import find_packages, setup # noqa
extras_require = {}
__version__ = "0.0.0+develop"
setup(
name="flytekit",
version=__version__,
maintainer="Flyte Contributors",
maintainer_email="[email protected]",
packages=find_packages(
include=["flytekit", "flytekit_scripts"],
exclude=["boilerplate", "docs", "plugins", "tests*"],
),
include_package_data=True,
url="https://github.com/flyteorg/flytekit",
description="Flyte SDK for Python",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"pyflyte-execute=flytekit.bin.entrypoint:execute_task_cmd",
"pyflyte-fast-execute=flytekit.bin.entrypoint:fast_execute_task_cmd",
"pyflyte-map-execute=flytekit.bin.entrypoint:map_execute_task_cmd",
"pyflyte=flytekit.clis.sdk_in_container.pyflyte:main",
"flyte-cli=flytekit.clis.flyte_cli.main:_flyte_cli",
]
},
install_requires=[
"googleapis-common-protos>=1.57",
"flyteidl>=1.5.16",
"wheel>=0.30.0,<1.0.0",
"pandas>=1.0.0,<2.0.0",
"pyarrow>=4.0.0,<11.0.0",
"click>=6.6,<9.0",
"croniter>=0.3.20,<4.0.0",
"deprecated>=1.0,<2.0",
"docker>=4.0.0,<7.0.0",
"python-dateutil>=2.1",
# Restrict grpcio and grpcio-status. Version 1.50.0 pulls in a version of protobuf that is not compatible
# with the old protobuf library (as described in https://developers.google.com/protocol-buffers/docs/news/2022-05-06)
"grpcio>=1.50.0,!=1.55.0,<1.53.1,<2.0",
"grpcio-status>=1.50.0,!=1.55.0,<1.53.1,<2.0",
"importlib-metadata",
"fsspec>=2023.3.0",
"adlfs",
"s3fs>=0.6.0",
"gcsfs",
"pyopenssl",
"joblib",
"python-json-logger>=2.0.0",
"pytimeparse>=1.1.8,<2.0.0",
"pytz",
"pyyaml!=6.0.0,!=5.4.0,!=5.4.1", # pyyaml is broken with cython 3: https://github.com/yaml/pyyaml/issues/601
"keyring>=18.0.1",
"requests>=2.18.4,<3.0.0",
"sortedcontainers>=1.5.9,<3.0.0",
"statsd>=3.0.0,<4.0.0",
"urllib3>=1.22,<2.0.0",
"wrapt>=1.0.0,<2.0.0",
# TODO: remove upper-bound after fixing change in contract
"dataclasses-json>=0.5.2,<0.5.12",
"marshmallow-jsonschema>=0.12.0",
"marshmallow-enum",
"natsort>=7.0.1",
"docker-image-py>=0.1.10",
"typing_extensions",
"docstring-parser>=0.9.0",
"diskcache>=5.2.1",
"cloudpickle>=2.0.0",
"cookiecutter>=1.7.3",
"numpy",
"gitpython",
"kubernetes>=12.0.1",
"rich",
"rich_click",
"jsonpickle",
],
extras_require=extras_require,
scripts=[
"flytekit_scripts/flytekit_build_image.sh",
"flytekit_scripts/flytekit_venv",
"flytekit/bin/entrypoint.py",
],
license="apache2",
python_requires=">=3.8,<3.12",
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)