-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
70 lines (63 loc) · 1.4 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
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["flit_core >=3.7,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "trailrunner"
readme = "README.md"
license = {file="LICENSE"}
dynamic = ["version", "description"]
authors = [
{name="Amethyst Reese", email="[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
"Typing :: Typed",
]
requires-python = ">=3.8"
dependencies = [
"pathspec>=0.8.1",
]
[project.optional-dependencies]
dev = [
"attribution==1.6.2",
"black==24.1.1",
"click==8.1.3",
"coverage==7.4.1",
"flit==3.9.0",
"flake8==7.0.0",
"flake8-bugbear==23.2.13",
"mypy==1.8.0",
"rich==13.7.0",
"ufmt==2.3.0",
"usort==1.0.7",
]
docs = [
"sphinx==6.1.3",
"sphinx-mdinclude==0.5.3",
]
[project.urls]
Home = "https://trailrunner.omnilib.dev"
Github = "https://github.com/omnilib/trailrunner"
Changelog = "https://trailrunner.omnilib.dev/en/latest/changelog.html"
[tool.flit.sdist]
exclude = [
".github/",
]
[tool.attribution]
name = "trailrunner"
package = "trailrunner"
version_file = true
signed_tags = true
ignored_authors = ["dependabot"]
[tool.coverage.run]
branch = true
include = ["trailrunner/*"]
omit = ["trailrunner/tests/*"]
[tool.coverage.report]
fail_under = 100
precision = 1
show_missing = true
skip_covered = true