forked from cloud-bulldozer/orion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (42 loc) · 1.13 KB
/
setup.py
File metadata and controls
43 lines (42 loc) · 1.13 KB
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
# orion/setup.py
"""
setup.py for orion cli tool
"""
from setuptools import setup, find_packages
setup(
name='orion',
use_scm_version={
'version_scheme': 'no-guess-dev',
'local_scheme': 'dirty-tag',
},
python_requires='>=3.11,<3.15',
setup_requires=['setuptools_scm'],
py_modules=['main', 'version'],
install_requires=[
'click==8.1.7',
'setuptools_scm>=6.2',
"apache-otava @ \
git+https://github.com/apache/otava.git@3b3d59a787ea03749e972c3509241114b861c99e",
'elastic-transport==8.11.0',
'opensearch-dsl==2.1.0',
'opensearch-py==3.0.0',
'Jinja2==3.1.3',
'PyYAML==6.0.1',
'pyshorteners==1.0.1',
"numpy==2.2.0; python_version=='3.14'",
'scikit-learn==1.5.0',
"pandas==2.3.1; python_version=='3.14'",
'tabulate==0.9.0',
],
entry_points={
'console_scripts': [
'orion = main:main',
],
},
packages=find_packages(),
license="MIT",
classifiers=[
'Programming Language :: Python :: 3.14',
'Operating System :: OS Independent',
],
)