-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (44 loc) · 1.29 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
[tool.poetry]
name = "llm4data"
version = "0.0.9"
description = "LLM4Data is a Python library designed to facilitate the application of large language models (LLMs) and artificial intelligence for development data and knowledge discovery."
authors = ["Aivin V. Solatorio <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.0.1"
numpy = "^1.24.3"
sqlalchemy = "^2.0.15"
tomli = "^2.0.1"
langchain = "^0.1.0"
psycopg2-binary = "^2.9.6"
python-dotenv = "^1.0.0"
fire = "^0.5.0"
qdrant-client = {version = "^1.2.0", python = ">=3.10,<3.12"}
sentence-transformers = "==2.2.2"
instructorembedding = "^1.0.1"
pymupdf = "^1.22.3"
metaschema = "0.0.3"
pycountry = "^22.3.5"
llm-space = "^0.0.3"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
pytest-cov = "^4.1.0"
pytest-dotenv = "^0.5.2"
[tool.poetry.group.lint.dependencies]
ruff = "^0.0.270"
black = "^23.3.0"
[tool.poetry.group.typing.dependencies]
mypy = "^1.3.0"
pandas-stubs = "^2.0.1.230501"
types-tqdm = "^4.65.0.1"
sqlalchemy-stubs = "^0.4"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
setuptools = "^67.8.0"
[tool.poetry_bumpversion.file."llm4data/__init__.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"