-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
54 lines (43 loc) · 1.17 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pl_crossvalidate"
version = "0.1.0"
description = "Cross validation made easy in Lightning"
license = {file = "LICENSE"}
authors = [
{name = "Nicki Skafte Detlefsen", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools]
packages = ["pl_crossvalidate"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.dynamic.optional-dependencies]
dev = {file = ['requirements_dev.txt']}
[tool.coverage.run]
command_line = "-m pytest tests/"
omit = ["tests/*"]
[tool.ruff]
select = ["E", "W", "F", "B", "I", "N", "W", "S", "D"]
ignore = ["D100", "D104", "D107"]
line-length = 120
[tool.ruff.pydocstyle]
convention = "google"
[tool.ruff.per-file-ignores]
"tests/**" = ["S101"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.semantic_release]
version_toml = "pyproject.toml:project.version"
branch = "master"
dist_path = "dist/"
remove_dist = false
upload_to_release = true
upload_to_pypi = false
patch_without_tag = true