-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.09 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
[build-system]
requires = [
"setuptools >= 65",
]
build-backend = "setuptools.build_meta"
[project]
name = "flinumeratr"
authors = [
{name = "Flickr Foundation", email = "hello@flickr.org"},
]
maintainers = [
{name = "Alex Chan", email="alex@flickr.org"},
]
requires-python = ">=3.12"
dynamic = ["dependencies", "version"]
[project.urls]
"Homepage" = "https://github.com/Flickr-Foundation/flinumeratr"
"Changelog" = "https://github.com/Flickr-Foundation/flinumeratr/blob/main/CHANGELOG.md"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "flinumeratr.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
flinumeratr = ["static/*", "templates/*"]
[tool.coverage.run]
branch = true
source = [
"flinumeratr",
"tests",
]
[tool.coverage.report]
show_missing = true
skip_covered = true
fail_under = 100
exclude_also = [
"if request.cls is not None",
]
[tool.pytest.ini_options]
filterwarnings = [
"error",
]
[tool.mypy]
mypy_path = "src"
strict = true
[tool.interrogate]
fail_under = 20
omit-covered-files = true