-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (33 loc) · 989 Bytes
/
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
[build-system]
requires = ["maturin>1.0.0,<=1.0.1"]
build-backend = "maturin"
[tool.maturin]
manifest-path = "hyperparameter/Cargo.toml"
module-name = "hyperparameter.librbackend"
features = ["pyo3/extension-module"]
include = ["hyperparameter/hyperparameter.h"]
[project]
name = "hyperparameter"
version = "0.5.10"
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" }
[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/"]