-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
64 lines (53 loc) · 1.58 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "mousebender"
version = "2023.2"
authors = [
{ name = "Brett Cannon", email = "[email protected]" },
{ name = "Derek Keeler", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
keywords = ["packaging", "Simple Repository API", "PEP 503", "PEP 592", "PEP 658", "PEP 691"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
]
dynamic = ["description"]
dependencies = ["packaging >= 20.9", "typing-extensions"]
[project.optional-dependencies]
test = [
"pytest >= 6.0.1",
"importlib-resources >= 1.4.0",
"coverage[toml] >= 5.0.4",
"pytest-cov >= 2.8.1",
]
doc = [
"sphinx",
"tomli; python_version < '3.11'",
"furo",
"sphinx-copybutton",
"sphinx-prompt",
]
[project.urls]
Documentation = "https://mousebender.readthedocs.io/"
Changelog = "https://github.com/brettcannon/mousebender/releases"
Repository = "https://github.com/brettcannon/mousebender"
Issues = "https://github.com/brettcannon/mousebender/issues"
"Fiscal support" = "https://github.com/sponsors/brettcannon/"
[tool.coverage]
run.source = ["mousebender/"]
run.branch = true
report.fail_under = 100
[tool.isort]
profile = "black"
[tool.ruff]
select = ["E", "F", "W", "D", "B", "A", "ANN", "RUF", "I"]
ignore = ["E501", "D203", "D213", "ANN101"]
[tool.ruff.per-file-ignores]
"tests/*" = ["D", "ANN"]
"noxfile.py" = ["ANN", "A001"]
"docs/conf.py" = ["D100"]