forked from databrickslabs/dbx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (47 loc) · 1.4 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
from setuptools import find_packages, setup
import sys
from dbx import __version__
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
INSTALL_REQUIRES = [
"path>=15.0.0",
"databricks-cli>=0.16.4",
"click>=7.1.2",
"retry>=0.9.2",
"requests>=2.24.0",
"mlflow>=1.23.0",
"scipy<=1.7.3", # 1.8.0 and higher require Python 3.8, we don't have such a limitation
"tqdm>=4.50.0",
"azure-identity>=1.7.1",
"azure-mgmt-datafactory>=2.2.0",
"azure-mgmt-subscription>=3.0.0",
"ruamel.yaml>=0.17.10",
"cryptography>=3.3.1,<37.0.0",
"emoji>=1.6.1",
"cookiecutter>=1.7.2",
"Jinja2>=2.11.2",
]
if sys.platform.startswith("win32"):
INSTALL_REQUIRES.append("pywin32==227")
setup(
name="dbx",
python_requires=">=3.7",
packages=find_packages(exclude=["tests", "tests.*"]),
setup_requires=["wheel"],
install_requires=INSTALL_REQUIRES,
entry_points="""
[console_scripts]
dbx=dbx.cli:cli
""",
long_description=long_description,
long_description_content_type="text/x-rst",
include_package_data=True,
version=__version__,
description="DataBricks CLI eXtensions aka dbx",
author="Thunder Shiviah, Michael Shtelma, Ivan Trusov",
license="Databricks License",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
],
)