forked from optuna/optuna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
183 lines (167 loc) · 5.29 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
import os
from typing import Dict
from typing import List
from setuptools import find_packages
from setuptools import setup
def get_version() -> str:
version_filepath = os.path.join(os.path.dirname(__file__), "optuna", "version.py")
with open(version_filepath) as f:
for line in f:
if line.startswith("__version__"):
return line.strip().split()[-1][1:-1]
assert False
def get_long_description() -> str:
readme_filepath = os.path.join(os.path.dirname(__file__), "README.md")
with open(readme_filepath) as f:
return f.read()
def get_install_requires() -> List[str]:
# When you update a lower bound of a dependency,
# please update `test-with-lower` in `.github/workflows/tests.yml` as well.
requirements = [
"alembic>=1.5.0",
"cmaes>=0.9.0",
"colorlog",
"numpy",
"packaging>=20.0",
"scipy>=1.7.0",
"sqlalchemy>=1.3.0",
"tqdm",
"PyYAML", # Only used in `optuna/cli.py`.
]
return requirements
def get_extras_require() -> Dict[str, List[str]]:
requirements = {
"benchmark": [
"asv>=0.5.0",
"botorch",
"cma",
"scikit-optimize",
"virtualenv",
],
"checking": [
"black",
"blackdoc",
"hacking",
"isort",
"mypy",
"types-PyYAML",
"types-redis",
"types-setuptools",
"typing_extensions>=3.10.0.0",
],
"document": [
"cma",
"distributed",
"fvcore",
"lightgbm",
"matplotlib!=3.6.0",
"mlflow",
"pandas",
"pillow",
"plotly>=4.9.0", # optuna/visualization.
"scikit-learn",
"scikit-optimize",
"sphinx",
"sphinx-copybutton",
"sphinx-gallery",
"sphinx-plotly-directive",
"sphinx_rtd_theme",
"torch==1.11.0",
"torchaudio==0.11.0",
"torchvision==0.12.0",
],
"integration": [
"allennlp>=2.2.0",
# TODO(c-bata): Remove cached-path after allennllp supports v1.1.3
"cached-path<=1.1.2",
"botorch>=0.4.0",
"catalyst>=21.3",
"catboost>=0.26",
"chainer>=5.0.0",
"cma",
"distributed",
"fastai",
"lightgbm",
"mlflow",
"mpi4py",
"mxnet",
"pandas",
"pytorch-ignite",
"pytorch-lightning>=1.5.0",
"scikit-learn>=0.24.2",
"scikit-optimize",
"shap",
"skorch",
"tensorflow",
"tensorflow-datasets",
"torch==1.11.0",
"torchaudio==0.11.0",
"torchvision==0.12.0",
"wandb",
"xgboost",
],
"optional": [
"matplotlib!=3.6.0", # optuna/visualization/matplotlib
"pandas", # optuna/study.py
"plotly>=4.9.0", # optuna/visualization.
"redis", # optuna/storages/redis.py.
"scikit-learn>=0.24.2",
# optuna/visualization/param_importances.py.
],
"test": [
"codecov",
"fakeredis[lua]",
"kaleido",
"pytest",
],
}
return requirements
setup(
name="optuna",
version=get_version(),
description="A hyperparameter optimization framework",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Takuya Akiba",
author_email="[email protected]",
url="https://optuna.org/",
project_urls={
"Source": "https://github.com/optuna/optuna",
"Documentation": "https://optuna.readthedocs.io",
"Bug Tracker": "https://github.com/optuna/optuna/issues",
},
packages=find_packages(exclude=("tests", "tests.*", "benchmarks")),
package_data={
"optuna": [
"storages/_rdb/alembic.ini",
"storages/_rdb/alembic/*.*",
"storages/_rdb/alembic/versions/*.*",
"py.typed",
]
},
python_requires=">=3.7",
install_requires=get_install_requires(),
extras_require=get_extras_require(),
entry_points={
"console_scripts": ["optuna = optuna.cli:main"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)