This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
76 lines (70 loc) · 2.05 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
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2", "numpy", "scikit-learn", "Cython>=3.0.0a10"]
build-backend = "setuptools.build_meta"
[project]
name = "optuna-fast-fanova"
description = "Cython accelerated fANOVA implementation for Optuna"
readme = "README.md"
authors = [
{ name = "Masashi Shibata", "email" = "[email protected]" }
]
requires-python = ">=3.7"
dependencies = [
"optuna",
"numpy",
"scikit-learn",
]
license = { text = "MIT License" }
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"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 :: 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",
]
dynamic = ["version"]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools_scm]
write_to = "optuna_fast_fanova/_version.py"
# this empty section means: use_scm_version=True
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[project.urls]
"Homepage" = "https://github.com/optuna/optuna-fast-fanova"
"Sources" = "https://github.com/optuna/optuna-fast-fanova"
"Bug Tracker" = "https://github.com/optuna/optuna-fast-fanova/issues"
[tool.black]
line-length = 99
target-version = ['py39']
exclude = '''
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| \.venv
| venv
| build
| dist
)/
'''
[tool.isort]
profile = 'black'
src_paths = ['optuna_fast_fanova', 'tests']
line_length = 99
lines_after_imports = 2
force_single_line = 'True'
force_sort_within_sections = 'True'
order_by_type = 'False'