forked from aistairc/aiaccel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
124 lines (114 loc) · 2.92 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "aiaccel"
version = "1.0.0"
description = "A hyperparameter optimization library for AI Bridging Cloud Infrastructure (ABCI). This software solves hyperparameter optimizations related to AI technologies including deep learning and multi-agent simulation. The software currently supports five optimization algorithms: random search, grid search, sobol sequence, nelder-mead method, and TPE."
readme = "README.md"
requires-python = ">=3.8.1,<3.12"
license = {text = "MIT"}
authors = [
{name = "AIST", email = "[email protected]"}
]
classifiers = [
"License :: OSI Approved :: MIT License",
]
dependencies = [
"asciichartpy>=1.5.25,<2.0.0",
"fasteners>=0.18,<1.0.0",
"numpy",
"omegaconf",
"optuna>=3.4.0,<4.0.0",
"psutil",
"scipy>=1.10.1,<2.0.0",
"sqlalchemy>=2.0.7,<3.0.0",
"tensorboardx",
"transitions>=0.9.0,<1.0.0",
"colorama",
]
[project.scripts]
aiaccel-plot= "aiaccel.cli.plot:main"
aiaccel-report = "aiaccel.cli.report:main"
aiaccel-start = "aiaccel.cli.start:main"
aiaccel-view = "aiaccel.cli.view:main"
aiaccel-set-result = "aiaccel.cli.set_result:main"
[project.urls]
homepage = "https://github.com/aistairc/aiaccel"
documentation = "https://aiaccel.readthedocs.io"
repository = "https://github.com/aistairc/aiaccel"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-subprocess",
"undecorated",
]
github-actions = [
"pytest-github-actions-annotate-failures",
]
dev = [
"black",
"flake8",
"flake8-bugbear",
"flake8-builtins",
"flake8-isort",
"flake8-pyproject",
"flake8-pytest-style",
"flake8-unused-arguments",
"isort",
"mypy",
"myst-parser",
"pep8-naming",
"pre-commit",
"pycodestyle",
"sphinx",
"sphinxcontrib-jquery",
"sphinx-intl",
"sphinx-fontawesome",
"sphinx-rtd-theme",
]
[tool.setuptools]
include-package-data = true
packages = [
'aiaccel',
'aiaccel.abci',
'aiaccel.optimizer',
'aiaccel.manager',
'aiaccel.manager.job',
'aiaccel.manager.job.model',
'aiaccel.tensorboard',
'aiaccel.util',
'aiaccel.cli',
'aiaccel.storage'
]
[tool.setuptools.package-data]
aiaccel = ["default_config.yaml"]
[tool.black]
target-version = ['py38']
line-length = 120
[tool.isort]
profile = "black"
py_version = 38
line_length = 120
[tool.flake8]
max-line-length = 120
# E203: whitespace before ':'
extend-ignore = "E203,"
[tool.mypy]
python_version="3.8"
install_types = true
non_interactive = true
ignore_missing_imports = true
warn_unused_configs = true
disallow_any_generics = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
warn_redundant_casts = true
warn_unused_ignores = true
no_implicit_reexport = true
strict_equality = true
strict_concatenate = true