-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 877 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 877 Bytes
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
[project]
name = "querygpt-v2"
version = "2.0.0"
description = "Natural language database query assistant"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "QueryGPT Team"}
]
keywords = ["ai", "database", "sql", "llm", "natural-language"]
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"httpx>=0.27.0",
"ruff>=0.4.0",
"mypy>=1.10.0",
]
[tool.uv.workspace]
members = ["apps/*", "packages/*"]
exclude = ["apps/data", "apps/desktop", "apps/web"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["apps/api/tests"]