-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
80 lines (72 loc) · 1.74 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
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "attribution"
readme = "README.rst"
authors = [
{name="Amethyst Reese", email="[email protected]"},
]
license = {file="LICENSE"}
dynamic = ["version", "description"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Utilities",
"Typing :: Typed",
]
requires-python = ">=3.8"
dependencies = [
"click >= 8.0",
"jinja2 >= 2.7",
"packaging >= 16.2",
"tomlkit >= 0.7.0",
]
[project.optional-dependencies]
dev = [
"black==24.4.2",
"build>=1",
"coverage==7.5.3",
"flake8==7.1.1",
"flake8-bugbear==24.8.19",
"flit==3.9.0",
"mypy==1.13.0",
"rich==13.7.1",
"ufmt==2.8.0",
"usort==1.0.8.post1",
"wheel==0.43.0",
]
docs = [
"sphinx==8.1.3",
"sphinx-mdinclude==0.6.2",
]
[project.urls]
Documentation = "https://attribution.omnilib.dev"
Github = "https://github.com/omnilib/attribution"
Changelog = "https://attribution.omnilib.dev/en/latest/changelog.html"
[project.scripts]
attribution = "attribution.main:main"
[tool.flit.sdist]
exclude = [
".github/",
]
[tool.attribution]
name = "attribution"
package = "attribution"
ignored_authors = ["dependabot[bot]", "pyup.io bot"]
version_file = true
signed_tags = true
cargo_packages = ["fake_crate"]
[tool.coverage.run]
branch = true
include = ["attribution/*"]
omit = ["attribution/tests/*"]
[tool.coverage.report]
fail_under = 90
precision = 1
show_missing = true
skip_covered = true