-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
68 lines (56 loc) · 1.42 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
[build-system]
requires = [
"setuptools==75.6.0",
"setuptools-scm==8.1.0",
"wheel==0.45.1",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "src/abcattrs/_version.py"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown; charset=UTF-8"}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[project]
name = "abcattrs"
authors = [
{ name="Anton Agestam", email="git@antonagestam.se" },
]
description = "Abstract class attributes"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 5 - Production/Stable",
"Typing :: Typed",
]
dynamic = ["version", "readme"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-mypy-plugins",
"coverage",
]
type-check = [
"mypy",
"pytest",
"types-setuptools",
]
[project.urls]
"Source Repository" = "https://github.com/antonagestam/abcattrs/"
[tool.check-manifest]
ignore = ["src/abcattrs/_version.py"]
[tool.pip-tools]
generate-hashes = true
strip-extras = true
upgrade = true