-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (40 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
49 lines (40 loc) · 1.09 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
44
45
46
47
48
49
[build-system]
requires = ["maturin>1.0.0,<=1.0.1"]
build-backend = "maturin"
[tool.maturin]
manifest-path = "src/py/Cargo.toml"
module-name = "hyperparameter.librbackend"
features = ["pyo3/extension-module"]
exclude = [
"src/**/target/**",
"src/py/Cargo.lock",
"hyperparameter/__pycache__/**",
]
[project]
name = "hyperparameter"
version = "0.6.0"
authors = [{ name = "Reiase", email = "reiase@gmail.com" }]
description = "A hyper-parameter library for researchers, data scientists and machine learning engineers."
requires-python = ">=3.7"
readme = "README.md"
license = { text = "Apache License Version 2.0" }
dependencies = ["toml>=0.10"]
[project.scripts]
hp = "hyperparameter.analyzer:main"
[tool.black]
line-length = 88
[tool.flake8]
extend-ignore = ["E203", "E501"]
max-line-length = 88
count = true
[tool.isort]
atomic = true
profile = "black"
line_length = 88
[tool.coverage.run]
branch = true
source = ["hyperparameter"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --durations=5 --doctest-modules --doctest-glob=*.md"
testpaths = ["hyperparameter/", "docs", "tests/"]