-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.23 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sqlalchemy-builder"
version = "0.1.1"
authors = [{ name = 'Jamie Chang', email = 'jamie.cheng.chang@gmail.com' }]
maintainers = [{ name = 'Jamie Chang', email = 'jamie.cheng.chang@gmail.com' }]
description = "Build SQLAlchemy statements avoiding common footguns."
readme = "README.md"
requires-python = ">=3.9"
dependencies = ["sqlalchemy>=2.0.0", "typing-extensions>=4.12.2"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"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",
]
[project.urls]
HomePage = "https://github.com/Jamie-Chang/sqlalchemy-builder"
[dependency-groups]
dev = ["pdoc3>=0.11.5", "pytest>=8.3.4", "ruff>=0.9.4"]
[tool.ruff]
line-length = 100
target-version = 'py310'
per-file-ignores = { "tests/*.py" = ["D"] }
[tool.ruff.lint]
select = [
'F', # Pyflakes
'E', # pycodestyle (Error)
'I', # isort
'D', # pydocstyle
]
[tool.pytest.ini_options]
addopts = ['--doctest-modules']