-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
72 lines (62 loc) · 1.69 KB
/
pyproject.toml
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
[tool.poetry]
name = "dbt-llm-tools"
version = "0.2.0"
description = "LLM based tools for dbt projects. Answer data questions, generate documentation and more."
authors = [
"Pragun Bhutani <[email protected]>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/pragunbhutani/dbt-llm-tools"
keywords = ["dbt", "openai", "llm", "data chatbot", "dbt documentation"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
packages = [
{ include = "dbt_llm_tools" },
]
[tool.poetry.dependencies]
python = "^3.10"
openai = "^1.16.0"
chromadb = "^0.4.24"
PyYAML = "^6.0.1"
typing-extensions = "^4.10.0"
streamlit = "^1.33.0"
tinydb = "^4.8.0"
[tool.poetry.group.dev.dependencies]
pylint = "^3.1.0"
flake8 = "^7.0.0"
black = "^24.3.0"
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
flake8-pyproject = "^1.2.3"
[tool.poetry.group.local.dependencies]
notebook = "^7.1.2"
[tool.poetry.group.docs.dependencies]
sphinx-rtd-theme = "^2.0.0"
[tool.flake8]
max-line-length = 120
per-file-ignores = """
__init__.py: F401
"""
[tool.pylint.'MESSAGES CONTROL']
max-line-length=120
disable = """
missing-module-docstring,
too-many-arguments,
too-few-public-methods,
broad-exception-raised,
missing-function-docstring,
redefined-builtin,
duplicate-code
"""
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"