This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
59 lines (54 loc) · 2.21 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
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "requirements.txt")) as f:
requirements = f.readlines()
with open(os.path.join(here, "README.rst")) as f:
long_description = f.read()
setup(
name="mlflow-rest-client",
setuptools_git_versioning={
"enabled": True,
"dev_template": "{tag}.dev{ccount}",
"version_file": os.path.join(here, "mlflow_rest_client", "VERSION"),
"count_commits_from_version_file": True,
},
description="Python client for MLflow REST API",
long_description=long_description,
long_description_content_type="text/x-rst",
license="Apache-2.0",
license_files=("LICENSE.txt",),
url="https://github.com/MobileTeleSystems/mlflow-rest-client",
author="DSX Team",
author_email="dsx-team@mts.ru",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
],
project_urls={
"Documentation": "https://mlflow-rest-client.readthedocs.io/en/stable/",
"Source": "https://github.com/MobileTeleSystems/mlflow-rest-client",
"CI/CD": "https://github.com/MobileTeleSystems/mlflow-rest-client/actions",
"Tracker": "https://github.com/MobileTeleSystems/mlflow-rest-client/issues",
},
keywords="MLflow REST API",
packages=find_packages(exclude=["docs", "docs.*", "tests", "tests.*", "samples", "samples.*"]),
python_requires=">=3.7",
install_requires=requirements,
setup_requires=["setuptools-git-versioning>=1.8.1"],
test_suite="tests",
include_package_data=True,
zip_safe=False,
)