-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (64 loc) · 1.78 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
[project]
name = "sqlalchemy-sessionload"
description = "SQLAlchemy load option that loads only from persisted session instances"
authors = [{ name = "Jan Vollmer", email = "[email protected]" }]
license = { file = "LICENSE" }
dependencies = ["sqlalchemy>=2.0.36"]
requires-python = ">=3.9"
readme = "README.md"
keywords = ["sqlalchemy", "session", "loader"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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 :: Implementation :: CPython",
"Typing :: Typed",
]
dynamic = ["version"]
[project.urls]
Source = "https://github.com/jvllmr/sqlalchemy-sessionload"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
ignore_package_warnings = ["pre-commit"]
[tool.pdm.version]
source = "scm"
[tool.pdm.scripts]
test = "pytest"
cov = "pytest --cov --cov-report=xml"
benchmark = "pytest --benchmark-json benchmark.json"
post_install = "pre-commit install"
[tool.pycln]
all = true
[tool.mypy]
python_version = "3.9"
files = ["src/sqlalchemy_sessionload", "tests"]
plugins = ["sqlalchemy.ext.mypy.plugin"]
[tool.pyaphid]
forbidden = ["print"]
[tool.ruff.lint]
ignore = ["E731"]
[dependency-groups]
dev = [
"black>=24.10.0",
"mypy>=1.14.0",
"ruff>=0.8.4",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"isort>=5.13.2",
"pycln>=2.4.0",
"pyaphid>=0.3.1",
"pre-commit>=4.0.1",
"faker>=33.1.0",
"pytest-benchmark>=5.1.0",
"sqlalchemy-utils>=0.41.2",
"nox>=2024.10.9",
"types-sqlalchemy-utils>=1.1.0",
]