-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
53 lines (43 loc) · 1.13 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
[tool.poetry]
name = "thundra-ai"
version = "0.1.0"
description = "Neonize Abstraction"
authors = ["krypton-byte <rosid6434@gmail.com>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{include="thundra"}]
include=[
"assets/logo.jpg"
]
homepage = "https://github.com/krypton-byte/thundra"
repository = "https://github.com/krypton-byte/thundra.git"
keywords = ["neonize", "whatsapp", "framework", "websocket", "bot"]
[tool.poetry.dependencies]
python = "^3.11"
neonize = "^0.3.1"
pytube = "^15.0.0"
langchain = "^0.1.11"
tomli-w = "^1.0.0"
langchain-openai = "^0.0.8"
graphviz = "^0.20.1"
appdirs = "^1.4.4"
cachetools = "^5.3.3"
[tool.poetry.group.dev.dependencies]
watchfiles = "^0.22.0"
[tool.poetry.group.docs.dependencies]
sphinx-autodoc-typehints = "^2.1.1"
sphinx = "^7.3.7"
sphinx-rtd-theme = "^2.0.0"
furo = "^2024.5.6"
[[tool.poetry.source]]
name = "thundra-ai"
url = "https://github.com/krypton-byte/thundra"
priority = "primary"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
thundra = "thundra.cli:main"