-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.27 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
[project]
name = "vortosql"
authors = [{ name = "Mo Malekpour" }]
version = "0.1.0"
description = "VortoSQL – Natural Language to SQL Pipeline"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["nl2sql", "text2sql", "nl-to-sql", "text-to-sql", "llm", "sql", "data-agent"]
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"anthropic>=0.96.0",
"datasets>=4.8.4",
"duckdb>=1.5.2",
"jinja2>=3.1.6",
"loguru>=0.7.3",
"ollama>=0.6.1",
"openai>=2.32.0",
"pandas>=3.0.2",
"pydantic>=2.13.2",
"sqlglot>=30.4.3",
"streamlit>=1.56.0",
"tiktoken>=0.12.0",
"torch>=2.11.0",
"torchvision>=0.26.0",
"transformers>=5.5.4",
]
[dependency-groups]
dev = [
"black>=26.3.1",
"pre-commit>=4.5.1",
"ruff>=0.15.11",
]
[project.scripts]
vortosql = "vortosql.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/vortosql"]
[tool.hatch.build.targets.sdist]
include = [
"src",
"README.md",
"LICENSE",
]
[tool.ruff]
line-length = 88
target-version = "py314"
exclude = ["__init__.py", "*.ipynb"]
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.black]
line-length = 88
target-version = ["py314"]
exclude = '(__init__\.py|.*\.ipynb)'