-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
94 lines (85 loc) · 2.17 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = [
"setuptools==76.0.0",
]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "mac_alias"
description = "Generate/parse macOS Alias records from Python"
readme = "README.rst"
requires-python = ">= 3.9"
license.text = "New BSD"
authors = [
{name="Alastair Houghton", email="[email protected]"}
]
maintainers = [
{name="Russell Keith-Magee", email="[email protected]"}
]
keywords = [
"mac_alias"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Desktop Environment",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Documentation = "https://mac-alias.readthedocs.io/en/latest/"
Homepage = "https://github.com/dmgbuild/mac_alias"
Tracker = "https://github.com/dmgbuild/mac_alias/issues"
Source = "https://github.com/dmgbuild/mac_alias"
[project.scripts]
mac_alias = "mac_alias.__main__:main"
[project.optional-dependencies]
dev = [
"coverage == 7.6.12",
"pre-commit == 4.1.0",
"pytest == 8.3.5",
"tox == 4.24.2",
]
# Docs are always built on Py3.12; see RTD and tox config files.
docs = [
"furo == 2024.8.6",
"sphinx == 8.2.3",
"sphinx-autobuild == 2024.10.3",
]
[tool.setuptools.dynamic]
version = {attr = "mac_alias.__version__"}
[tool.coverage.run]
branch = true
relative_files = true
source_pkgs = ["mac_alias"]
[tool.coverage.paths]
source = [
"src",
"**/site-packages",
]
[tool.coverage.report]
show_missing = true
skip_covered = true
skip_empty = true
precision = 1
exclude_lines = [
"pragma: no cover",
"@(abc\\.)?abstractmethod",
"NotImplementedError\\(\\)",
"if TYPE_CHECKING:",
]
[tool.isort]
profile = "black"
split_on_trailing_comma = true
combine_as_imports = true
skip_glob = [
"docs/conf.py",
"venv*",
"local",
]