-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
46 lines (43 loc) · 1.14 KB
/
setup.cfg
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
[metadata]
name = echo-opt
description = Earth Computer Hyperparameter Optimization: Distributed hyperparameter optimization on HPC and GPU systems with analysis tools.
long_description = file: README.md
long_description_content_type = text/markdown
author = John Schreck, David John Gagne, Charlie Becker, Gabrielle Gantos
author_email = [email protected]
license = MIT
license_file = LICENSE
platform = any
version = file: echo/VERSION
keywords = machine-learning, hyperparameter, gpu
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
url = https://github.com/NCAR/echo-opt
[options]
zip_safe=True
packages =
echo
echo.src
include_package_data = True
setup_requires = setuptools
python_requires = >=3.7
install_requires =
numpy<2
scipy
matplotlib
optuna
setuptools
pandas
scikit-learn
xgboost
pyarrow
pyyaml
[options.entry_points]
console_scripts =
echo-opt = echo.optimize:main
echo-run = echo.run:main
echo-report = echo.report:main