forked from mlrun/mlrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
90 lines (80 loc) · 2.98 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
# Copyright 2023 Iguazio
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import json
import logging
import re
from setuptools import setup
import dependencies
import packages
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger("mlrun-setup")
def version():
try:
with open("mlrun/utils/version/version.json") as version_file:
version_metadata = json.load(version_file)
version_ = version_metadata["version"]
# replace "1.4.0-rc1+rca" with "1.4.0rc1+rca"
return re.sub(r"(\d+\.\d+\.\d+)-rc(\d+)", r"\1rc\2", version_)
except (ValueError, KeyError, FileNotFoundError):
# When installing un-released version (e.g. by doing
# pip install git+https://github.com/mlrun/mlrun@development)
# it won't have a version file, so adding some sane default
logger.warning("Failed resolving version. Ignoring and using 0.0.0+unstable")
return "0.0.0+unstable"
with open("README.md") as fp:
long_desc = fp.read()
setup(
name="mlrun",
version=version(),
description="Tracking and config of machine learning runs",
long_description=long_desc,
long_description_content_type="text/markdown",
author="Yaron Haviv",
author_email="[email protected]",
license="Apache License 2.0",
url="https://github.com/mlrun/mlrun",
packages=packages.packages(
exclude_packages=[
"server",
]
),
package_data={"mlrun": ["runtimes/nuclio/application/*.go"]},
keywords=[
"mlrun",
"mlops",
"data-science",
"machine-learning",
"experiment-tracking",
],
python_requires=">=3.9, <3.12",
install_requires=dependencies.base_requirements(),
tests_require=dependencies.dev_requirements(),
extras_require=dependencies.extra_requirements(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
],
zip_safe=False,
include_package_data=True,
entry_points={"console_scripts": ["mlrun=mlrun.__main__:main"]},
)