forked from flyteorg/flytekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (67 loc) · 2.27 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
from __future__ import absolute_import
from setuptools import setup, find_packages # noqa
import flytekit # noqa
from flytekit.tools.lazy_loader import LazyLoadPlugin # noqa
extras_require = LazyLoadPlugin.get_extras_require()
extras_require[':python_version<"3"'] = [
"configparser>=3.0.0,<4.0.0",
"futures>=3.2.0,<4.0.0",
"pathlib2>=2.3.2,<3.0.0"
]
setup(
name='flytekit',
version=flytekit.__version__,
maintainer='Lyft',
maintainer_email='[email protected]',
packages=find_packages(exclude=["tests*"]),
url='https://github.com/lyft/flytekit',
description='Flyte SDK for Python',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'pyflyte-execute=flytekit.bin.entrypoint:execute_task_cmd',
'pyflyte=flytekit.clis.sdk_in_container.pyflyte:main',
'flyte-cli=flytekit.clis.flyte_cli.main:_flyte_cli'
]
},
install_requires=[
"flyteidl>=0.17.27,<1.0.0",
"click>=6.6,<8.0",
"croniter>=0.3.20,<4.0.0",
"deprecation>=2.0,<3.0",
"boto3>=1.4.4,<2.0",
"python-dateutil<2.8.1,>=2.1",
"grpcio>=1.3.0,<2.0",
"protobuf>=3.6.1,<4",
"pytimeparse>=1.1.8,<2.0.0",
"pytz>=2017.2,<2018.5",
"keyring>=18.0.1",
"requests>=2.18.4,<3.0.0",
"responses>=0.10.7",
"six>=1.9.0,<2.0.0",
"sortedcontainers>=1.5.9<3.0.0",
"statsd>=3.0.0,<4.0.0",
"urllib3>=1.22,<1.25",
"wrapt>=1.0.0,<2.0.0",
],
extras_require=extras_require,
scripts=[
'scripts/flytekit_install_spark.sh',
'scripts/flytekit_spark_entrypoint.sh',
'scripts/flytekit_build_image.sh',
'scripts/flytekit_venv'
],
license="apache2",
python_requires=">=2.7",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries",
],
)