forked from mlflow/mlflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
221 lines (187 loc) · 7.58 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
import os
import logging
from importlib.machinery import SourceFileLoader
from setuptools import setup, find_packages, Command
_MLFLOW_SKINNY_ENV_VAR = "MLFLOW_SKINNY"
version = (
SourceFileLoader("mlflow.version", os.path.join("mlflow", "version.py")).load_module().VERSION
)
# Get a list of all files in the directory to include in our module
def package_files(directory):
"""
Recursively collects file paths within a directory relative to the mlflow directory.
"""
mlflow_dir = os.path.abspath("mlflow")
paths = []
for root, _, filenames in os.walk(directory):
for filename in filenames:
paths.append(os.path.relpath(os.path.join(root, filename), mlflow_dir))
return paths
def is_comment_or_empty(line):
stripped = line.strip()
return stripped == "" or stripped.startswith("#")
def remove_comments_and_empty_lines(lines):
return [line for line in lines if not is_comment_or_empty(line)]
# Prints out a set of paths (relative to the mlflow/ directory) of files in mlflow/server/js/build
# to include in the wheel, e.g. "server/js/build/index.html"
js_files = package_files("mlflow/server/js/build")
models_container_server_files = package_files("mlflow/models/container")
alembic_files = [
"store/db_migrations/alembic.ini",
"temporary_db_migrations_for_pre_1_users/alembic.ini",
]
extra_files = [
"pypi_package_index.json",
"pyspark/ml/log_model_allowlist.txt",
"server/auth/basic_auth.ini",
"server/auth/db/migrations/alembic.ini",
]
recipes_template_files = package_files("mlflow/recipes/resources")
recipes_files = package_files("mlflow/recipes/cards/templates")
"""
Minimal requirements for the skinny MLflow client which provides a limited
subset of functionality such as: RESTful client functionality for Tracking and
Model Registry, as well as support for Project execution against local backends
and Databricks.
"""
with open(os.path.join("requirements", "skinny-requirements.txt")) as f:
SKINNY_REQUIREMENTS = remove_comments_and_empty_lines(f.read().splitlines())
"""
These are the core requirements for the complete MLflow platform, which augments
the skinny client functionality with support for running the MLflow Tracking
Server & UI. It also adds project backends such as Docker and Kubernetes among
other capabilities.
"""
with open(os.path.join("requirements", "core-requirements.txt")) as f:
CORE_REQUIREMENTS = SKINNY_REQUIREMENTS + remove_comments_and_empty_lines(f.read().splitlines())
with open(os.path.join("requirements", "gateway-requirements.txt")) as f:
GATEWAY_REQUIREMENTS = remove_comments_and_empty_lines(f.read().splitlines())
_is_mlflow_skinny = bool(os.environ.get(_MLFLOW_SKINNY_ENV_VAR))
logging.debug("{} env var is set: {}".format(_MLFLOW_SKINNY_ENV_VAR, _is_mlflow_skinny))
class ListDependencies(Command):
# `python setup.py <command name>` prints out "running <command name>" by default.
# This logging message must be hidden by specifying `--quiet` (or `-q`) when piping the output
# of this command to `pip install`.
description = "List mlflow dependencies"
user_options = [
("skinny", None, "List mlflow-skinny dependencies"),
]
def initialize_options(self):
self.skinny = False
def finalize_options(self):
pass
def run(self):
dependencies = SKINNY_REQUIREMENTS if self.skinny else CORE_REQUIREMENTS
print("\n".join(dependencies))
MINIMUM_SUPPORTED_PYTHON_VERSION = "3.8"
class MinPythonVersion(Command):
description = "Print out the minimum supported Python version"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
print(MINIMUM_SUPPORTED_PYTHON_VERSION)
skinny_package_data = [
# include alembic files to enable usage of the skinny client with SQL databases
# if users install sqlalchemy and alembic independently
*alembic_files,
*extra_files,
*recipes_template_files,
*recipes_files,
]
setup(
name="mlflow" if not _is_mlflow_skinny else "mlflow-skinny",
version=version,
packages=find_packages(exclude=["tests", "tests.*"]),
package_data=(
{"mlflow": skinny_package_data}
if _is_mlflow_skinny
else {
"mlflow": [
*skinny_package_data,
*js_files,
*models_container_server_files,
]
}
),
install_requires=CORE_REQUIREMENTS if not _is_mlflow_skinny else SKINNY_REQUIREMENTS,
extras_require={
"extras": [
# Required to log artifacts and models to HDFS artifact locations
"pyarrow",
# Required to sign outgoing request with SigV4 signature
"requests-auth-aws-sigv4",
# Required to log artifacts and models to AWS S3 artifact locations
"boto3",
"botocore",
# Required to log artifacts and models to GCS artifact locations
"google-cloud-storage>=1.30.0",
"azureml-core>=1.2.0",
# Required to log artifacts to SFTP artifact locations
"pysftp",
# Required by the mlflow.projects module, when running projects against
# a remote Kubernetes cluster
"kubernetes",
# Required to serve models through MLServer
# NOTE: remove the upper version pin once protobuf is no longer pinned in mlserver
# Reference issue: https://github.com/SeldonIO/MLServer/issues/1089
"mlserver>=1.2.0,!=1.3.1",
"mlserver-mlflow>=1.2.0,!=1.3.1",
"virtualenv",
# Required for exporting metrics from the MLflow server to Prometheus
# as part of the MLflow server monitoring add-on
"prometheus-flask-exporter",
],
"databricks": [
# Required to write model artifacts to unity catalog locations
"azure-storage-file-datalake>12",
"google-cloud-storage>=1.30.0",
"boto3>1",
"botocore>1.34",
],
"gateway": GATEWAY_REQUIREMENTS,
"genai": GATEWAY_REQUIREMENTS,
"sqlserver": ["mlflow-dbstore"],
"aliyun-oss": ["aliyunstoreplugin"],
"xethub": ["mlflow-xethub"],
},
entry_points="""
[console_scripts]
mlflow=mlflow.cli:cli
[mlflow.app]
basic-auth=mlflow.server.auth:create_app
[mlflow.app.client]
basic-auth=mlflow.server.auth.client:AuthServiceClient
[mlflow.deployments]
databricks=mlflow.deployments.databricks
http=mlflow.deployments.mlflow
https=mlflow.deployments.mlflow
openai=mlflow.deployments.openai
""",
cmdclass={
"dependencies": ListDependencies,
"min_python_version": MinPythonVersion,
},
zip_safe=False,
author="Databricks",
description="MLflow: A Platform for ML Development and Productionization",
long_description=open("README.rst").read()
if not _is_mlflow_skinny
else open("README_SKINNY.rst").read() + open("README.rst").read(),
long_description_content_type="text/x-rst",
license="Apache License 2.0",
classifiers=[
"Intended Audience :: Developers",
f"Programming Language :: Python :: {MINIMUM_SUPPORTED_PYTHON_VERSION}",
],
keywords="ml ai databricks",
url="https://mlflow.org/",
python_requires=f">={MINIMUM_SUPPORTED_PYTHON_VERSION}",
project_urls={
"Bug Tracker": "https://github.com/mlflow/mlflow/issues",
"Documentation": "https://mlflow.org/docs/latest/index.html",
"Source Code": "https://github.com/mlflow/mlflow",
},
)