-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 1.22 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "sea-query"
description = "Query builder to help you construct dynamic SQL queries"
requires-python = ">=3.8"
authors = [{ name = "Ordanis Sanchez", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["version"]
classifiers = [
"Topic :: Database",
"Topic :: Software Development :: Libraries",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Typing :: Stubs Only",
]
[project.urls]
Repository = "https://github.com/oldani/sea-query/"
[tool.maturin]
python-source = "python"
module-name = "sea_query._internal"
features = ["pyo3/extension-module"]
exclude = ["tests/*.py"]
[tool.uv]
dev-dependencies = ["pytest>=8.3.2", "ruff>=0.6.2", "mypy>=1.11.2"]
[tool.ruff.lint.isort]
combine-as-imports = true