-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 918 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
42
43
44
45
46
47
48
49
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "songbirdcli"
authors = [
{name = "Christian Boin"},
]
version = "0.2.6"
description = "Songbird's cli."
readme = "README.md"
requires-python = ">=3.11"
dynamic = ["dependencies"]
[project.urls]
Documentation = "https://cboin1996.github.io/songbird/"
[tool.setuptools.dynamic]
dependencies = {file = ["songbirdcli/requirements.txt"]}
[project.optional-dependencies]
# these dependencies are required for development,
# not for running the package.
dev = [
# lint
"black",
"click",
"isort",
# test
"pytest",
"pytest-cov",
# docs
"mkdocs",
"mkdocs-material",
"mike",
"mkdocstrings-python"
]
package = [
"build",
"twine"
]
[tool.setuptools.packages.find]
exclude = ["app", "junit"]
[tool.pytest.ini_options]
log_cli_level="INFO"
log_cli=1