-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (35 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
45 lines (35 loc) · 1.01 KB
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
[tool.poetry]
name = "verified-sources"
version = "0.1.0"
description = "List of verified sources"
authors = ["Rahul Kumar <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
dat-core = {git = "https://github.com/dat-labs/dat-core", rev = "main"}
dat-cli = {git = "https://github.com/dat-labs/dat-cli", rev = "main"}
beautifulsoup4 = "^4.12.3"
boto3 = "*"
google-cloud-storage = "^2.18.0"
langchain-text-splitters = "^0.0.1"
langchain-community = "^0.0.32"
llama-index-readers-s3 = "^0.1.7"
llama-index-readers-web = "^0.1.21"
datamodel-code-generator = "^0.25.9"
redshift-connector = "^2.1.3"
minio = "^7.2.8"
psycopg = "^3.2.2"
[tool.poetry.group.dev.dependencies]
pydantic = "^2.6.3"
pyyaml = "^6.0.1"
requests = "^2.31.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
[tool.poetry.group.wikipedia.dependencies]
lxml = "^5.1.0"
[tool.poetry.extras]
wikipedia = []
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"