generated from GilesStrong/template_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.2 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
[tool.poetry]
name = "deep_mtg"
version = "0.1.0"
description = ""
authors = [
"Giles Strong <[email protected]>",
]
readme = "README.md"
keywords = []
include = ["py.typed"]
[tool.poetry.dependencies]
python = "~3.12"
langchain = "^0.3.7"
langchain-ollama = "^0.2.0"
langgraph = "^0.2.45"
transformers = "^4.46.2"
langchain-community = "^0.3.5"
beautifulsoup4 = "^4.12.3"
langchain-chroma = "^0.1.4"
pypdf = "^5.1.0"
tiktoken = "^0.8.0"
torch = "^2.5.1"
jq = "^1.8.0"
tqdm = "^4.67.1"
openai = "^1.59.6"
langchain-openai = "^0.3.0"
pytest-xdist = "^3.6.1"
typer = "^0.15.1"
[tool.poetry.group.dev.dependencies]
notebook = "^7.0.0"
jupyter = "^1.0.0"
traitlets = "5.9.0"
ipykernel = "^6.29.5"
pre-commit = "^3.6.1"
flake8 = "^7.0.0"
mypy = "^1.8.0"
pytest-mock = "^3.12.0"
flaky = "^3.7.0"
pytest-lazy-fixture = "^0.6.3"
isort = "^5.13.2"
black = "^24.10.0"
pytest = "<8.0.0"
pandas-stubs = "^2.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py312']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 120