-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
89 lines (82 loc) · 1.7 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[tool.poetry]
name = "llm-math-education"
version = "0.5.1"
description = "Retrieval-backed LLMs for math education"
authors = [
"Zachary Levonian <[email protected]>"
]
license = "MIT"
readme = "README.md"
packages = [{include = "llm_math_education", from = "src"}]
repository = "https://github.com/levon003/llm-math-education.git"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
poetry = "1.4.0"
python-dotenv = "^1.0.0"
openai = "<1.0"
streamlit = "^1.0.0"
pandas = "<3"
tiktoken = "<=1.0"
scipy = "^1.11.0"
argon2-cffi = "^21.3.0"
[tool.poetry.group.dev.dependencies]
httpx = "^0.24.1"
jupyter = "^1.0.0"
matplotlib = "^3.7.1"
urllib3 = "<=2.0"
openpyxl = "^3.1.2"
scikit-learn = "^1.2.2"
beautifulsoup4 = "^4.12.2"
black = "^24.0.0"
isort = "^5.12"
flake8 = "^6.0.0"
nbqa = "^1.6.0"
pre-commit = "^2.21.0"
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
jupyterlab = "^4.0.2"
pytest-dotenv = "^0.5.2"
torch = "^2.0.1"
outlines = "^0.0.8"
sqlalchemy = "^2.0.20"
psycopg2-binary = "^2.9.7"
supabase = "^1.0.4"
[tool.poetry.group.anserini]
optional = true
[tool.poetry.group.anserini.dependencies]
lightgbm = "^3.3.5"
nmslib = "^2.1.1"
pyserini = "^0.21.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
.eggs # exclude a few common directories in the
| .git # root of the project
| .github
| .gitignore
| .hg
| .mypy_cache
| .tox
| .venv
| venv
| _build
| buck-out
| build
| ci
| data
| dist
| docs
| docsrc
)/
'''
[tool.isort]
profile = "black"
line_length = 79
multi_line_output = 3
include_trailing_comma = true
virtual_env = "venv"