-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (72 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
83 lines (72 loc) · 1.76 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 = "sqlalchemy-crud-plus"
description = "Advanced asynchronous CRUD SDK built on SQLAlchemy 2.0"
authors = [
{ name = "Wu Clan", email = "jianhengwu0407@gmail.com" },
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dynamic = ['version']
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"sqlalchemy>=2.0.0",
"pydantic>=2.0",
]
[project.urls]
homepage = "https://github.com/fastapi-practices/sqlalchemy-crud-plus"
repository = "https://github.com/fastapi-practices/sqlalchemy-crud-plus"
[dependency-groups]
dev = [
"aiosqlite>=0.21.0",
"pytest>=8.4.0",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0",
"ty>=0.0.1a23",
]
lint = [
"pre-commit>=4.3.0",
]
docs = [
"click==8.2.1",
"mkdocs-material>=9.6.22",
"mkdocstrings[python]>=0.30.0",
"ruff>=0.14.0",
]
[tool.uv]
python-downloads = "manual"
default-groups = ["dev", "lint"]
[tool.ruff]
line-length = 120
unsafe-fixes = true
target-version = "py310"
[tool.ruff.lint]
select = [
"E",
"F",
"I"
]
preview = true
[tool.ruff.lint.isort]
lines-between-types = 1
order-by-type = true
[tool.ruff.format]
quote-style = "single"
docstring-code-format = true
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session"
[tool.hatch.build.targets.wheel]
packages = ["sqlalchemy_crud_plus"]
[tool.hatch.version]
path = "sqlalchemy_crud_plus/__init__.py"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"