-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 954 Bytes
/
Copy pathpyproject.toml
File metadata and controls
54 lines (45 loc) · 954 Bytes
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
[tool.poetry]
name = "smallchain"
version = "0.1.0"
description = "This is a small implementation of langchain, including a JARVIS-like project"
authors = ["Dogan <dogankeskin33@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
# Core dependencies
openai = "*"
torch = "*"
loguru = "*"
rich = "*"
termcolor = "*"
pydantic = "^2.0"
pydantic-settings = "^2.0"
aiohttp = "*"
requests = "*"
geocoder = "*"
# Google API dependencies
google-auth = "*"
google-auth-oauthlib = "*"
google-auth-httplib2 = "*"
google-api-python-client = "*"
# PDF processing
PyPDF2 = "*"
pymupdf = "*"
pdfplumber = "*"
# Audio processing
pyaudio = "*"
pygame = "*"
# UI Framework
PyQt6 = "*"
PyQt6-WebEngine = "*"
# Additional utilities
typing-extensions = "*"
enum34 = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
black = "*"
flake8 = "*"
mypy = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"