-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (36 loc) · 954 Bytes
/
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
[tool.poetry]
name = "lexbudget"
version = "0.1.0"
description = "Conversational assistant for Lexington, MA town records."
authors = []
readme = "README.md"
repository = "https://github.com/Brainana/LexBudget"
[tool.poetry.dependencies]
python = ">= 3.9.8, < 4.0"
openai = ">= 1.6.1, < 2"
streamlit = ">= 1.29.0, < 2"
trubrics = {extras = ["streamlit"], version = "^1.6.2"}
streamlit-javascript = "^0.1.5"
chromadb = "^0.4.24"
langchain = "^0.1.11"
pypdf = "^4.1.0"
tiktoken = "^0.6.0"
langchain-community = "^0.0.27"
langchain-openai = "^0.0.8"
anthropic = "^0.19.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
[tool.poetry.group.lint.dependencies]
black = "^22.10.0"
isort = "^5.10.1"
flake8 = "^6.0.0"
[tool.poetry.group.typing.dependencies]
mypy = "^0.991"
[tool.isort]
profile = "black"
src_paths = ["lexbudget"]
[tool.mypy]
ignore_missing_imports = "True"
disallow_untyped_defs = "True"
exclude = ["tests"]