-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
83 lines (73 loc) · 2.01 KB
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
[project]
name = "pUUID"
version = "1.2.0"
license = "LGPL-3.0-only"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Operating System :: OS Independent",
"Typing :: Typed",
]
description = "Prefixed UUIDs for Python with Pydantic & SQLAlchemy support."
readme = "README.md"
authors = [
{ name = "Jendrik Potyka", email = "jpotyka@digon.io" },
{ name = "Fabian Preiss", email = "fpreiss@digon.io" },
]
maintainers = [
{ name = "Jendrik Potyka", email = "jpotyka@digon.io" },
{ name = "Fabian Preiss", email = "fpreiss@digon.io" },
]
requires-python = ">=3.14"
dependencies = []
[project.optional-dependencies]
pydantic = ["pydantic>=2.12.5"]
sqlalchemy = ["sqlalchemy>=2.0.45"]
[build-system]
requires = ["uv_build>=0.9.13,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"basedpyright>=1.37.0",
"black>=25.12.0",
"coverage>=7.13.1",
"ipython>=9.9.0",
"isort>=7.0.0",
"marimo>=0.18.4",
"mkdocs>=1.6.1",
"mkdocs-coverage>=2.0.0",
"mkdocs-material[imaging]>=9.7.1",
"mkdocstrings[python]>=1.0.0",
"pdbpp>=0.11.7",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-markdown-docs>=0.9.0",
"ruff>=0.14.10",
"sqlalchemy[mypy]>=2.0.45",
]
sqlalchemy = ["sqlalchemy>=2.0.45"]
pydantic = ["pydantic>=2.12.5"]
[tool.black]
target-version = ['py313'] # black is still not properly supporting py314
[tool.isort]
py_version = 314
profile = "black"
[tool.mypy]
python_version = "3.14"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_any_generics = true
disallow_subclassing_any = true
[tool.pyright]
typeCheckingMode = "strict"
[tool.coverage.run]
branch = true
source = ["src/puuid"]
[tool.coverage.report]
show_missing = true