-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 1.68 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
[project]
name = "queryweaver"
version = "0.1.0"
description = "QueryWeaver - Text2SQL using graph-powered schema understanding"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi~=0.135.1",
"uvicorn~=0.42.0",
"litellm>=1.83.0",
"falkordb~=1.6.0",
"psycopg2-binary~=2.9.11",
"pymysql~=1.1.0",
"authlib~=1.6.4",
"itsdangerous~=2.2.0",
"jsonschema~=4.26.0",
"tqdm~=4.67.3",
"python-multipart~=0.0.10",
"jinja2~=3.1.4",
"graphiti-core>=0.28.1",
"fastmcp>=3.2.0",
"snowflake-connector-python~=4.4.0",
"python-dotenv~=1.1.0",
"aiohttp>=3.13.5",
]
[dependency-groups]
dev = [
"pytest~=9.0.2",
"pylint~=4.0.3",
"playwright~=1.58.0",
"pytest-playwright~=0.7.1",
"pytest-asyncio~=1.3.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["api"]
[tool.uv]
package = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "--verbose --tb=short --strict-markers --disable-warnings"
markers = [
"e2e: End-to-end tests using Playwright",
"slow: Tests that take a long time to run",
"auth: Tests that require authentication",
"integration: Integration tests",
"unit: Unit tests",
]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
[tool.pylint.main]
disable = [
"C0114", # missing-module-docstring
"C0115", # missing-class-docstring
"C0116", # missing-function-docstring
]
[tool.pylint.format]
max-line-length = 120