-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (60 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
69 lines (60 loc) · 1.39 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
[tool.poetry]
name = "sql-r1"
version = "0.1.0"
description = ""
authors = ["FacerAin <ywsong.dev@kakao.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.2.3"
smolagents = "^1.12.0"
python-dotenv = "^1.1.0"
black = {extras = ["jupyter"], version = "^25.1.0"}
isort = "^6.0.1"
mypy = "^1.15.0"
flake8 = "^7.2.0"
pre-commit = "^4.2.0"
pandas-stubs = "^2.2.3.250308"
openai = "^1.70.0"
colorlog = "^6.9.0"
sqlparse = "^0.5.3"
sqlglot = "^26.12.1"
matplotlib = "^3.10.1"
pyyaml = "^6.0.2"
seaborn = "^0.13.2"
networkx = "^3.4.2"
streamlit = "^1.44.1"
plotly = "^6.0.1"
anthropic = "^0.49.0"
scikit-learn = "^1.6.1"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
check_untyped_defs = false
disallow_untyped_decorators = false
no_implicit_optional = false
strict_optional = false
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
disallow_incomplete_defs = false