-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (71 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
88 lines (71 loc) · 1.93 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
84
85
86
87
88
[project]
name = "david8"
version = "999.9.9.dev1"
description = "Lightweight Python SQL query builder with support for multiple dialects: ClickHouse, PostgreSQL, DuckDB, MySQL and SQLite"
authors = [{name = "Danila Ganchar", email = "danila.ganchar@gmail.com"}]
maintainers = [{name = "Danila Ganchar", email = "danila.ganchar@gmail.com"}]
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.11, < 3.14"
dependencies = [
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Database",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/d-ganchar/david8"
Changelog = "https://github.com/d-ganchar/david8/releases"
Issues = "https://github.com/d-ganchar/david8/issues"
CI = "https://github.com/d-ganchar/david8/actions"
Documentation = "https://github.com/d-ganchar/david8/wiki"
Source = "https://github.com/d-ganchar/david8"
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages]
find = { include = ["david8", "david8.*"] }
[dependency-groups]
dev = [
"ruff",
"parameterized",
"pytest",
"pytest-benchmark",
"sqlalchemy>=2.0.44",
"pypika>=0.48.9",
"psrecord>=1.4",
"rich>=14.2.0",
"pytest-cov>=7.0.0",
]
[lint.select]
[lint.isort]
known-third-party = ["pytest"]
lines-after-imports = 2
lines-between-types = 1
[tool.ruff]
line-length = 120
exclude = [
".bzr",
".direnv",
".eggs",
"**/.git",
"__pycache__",
"tests/fixtures/",
"benchmarks/"
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "N", "B", "W"]
[tool.pytest.ini_options]
testpaths = [
"tests",
"--color=yes",
]
addopts = [
"--ignore=tests/test_benchmarks.py",
]