-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (60 loc) · 1.65 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
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "db-reasoning-engine"
version = "1.0.0"
description = "Enterprise-grade agentic Text-to-SQL system with self-correction"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
keywords = ["text-to-sql", "llm", "database", "agent", "self-correction"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"pydantic>=2.5.3",
"pydantic-settings>=2.1.0",
"psycopg2-binary>=2.9.9",
"sqlalchemy>=2.0.25",
"networkx>=3.2.1",
"sentence-transformers>=2.3.1",
"numpy>=1.26.3",
"scikit-learn>=1.4.0",
"openai>=1.10.0",
"python-dotenv>=1.0.0",
"tenacity>=8.2.3",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.4",
"pytest-asyncio>=0.23.3",
"black>=23.12.1",
"ruff>=0.1.11",
"mypy>=1.8.0",
]
[project.scripts]
db-reasoning = "main:main"
[tool.black]
line-length = 100
target-version = ['py39', 'py310', 'py311']
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false