-
-
Notifications
You must be signed in to change notification settings - Fork 304
/
pyproject.toml
102 lines (91 loc) · 2.1 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gpt3discord"
description = "A Chat GPT Discord bot"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = []
authors = [
{ name = "Kaveen Kumarasinghe", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"Pillow==9.3.0",
"openai==1.2.0",
"yt-dlp==2023.3.4",
"ffmpeg==1.4",
"beautifulsoup4==4.11.2",
"py-cord==2.4.1",
"python-dotenv==1.0.0",
"requests==2.31.0",
"transformers==4.25.1",
"pycord-multicog==1.0.2",
"aiofiles==22.1.0",
"pinecone-client==2.1.0",
"sqlitedict==2.1.0",
"backoff==2.2.1",
"flask==3.0.0",
"werkzeug==3.0.1",
"llama-index==0.8.69.post1",
"pypdf==3.11.1",
"youtube_transcript_api==0.5.0",
"sentencepiece==0.1.99",
"protobuf==3.20.2",
"python-pptx==0.6.21",
"langchain==0.0.335",
"unidecode==1.3.6",
"tqdm==4.64.1",
"docx2txt==0.8",
"pytest-asyncio==0.21.0",
"pytest~=7.2.2",
"google-api-python-client==2.85.0",
"wolframalpha==5.0.0",
"nltk==3.8.1",
"replicate==0.15.4",
"tiktoken==0.4.0",
"pydantic==2.4.2",
"e2b==0.10.6"
]
dynamic = ["version"]
[project.scripts]
gpt3discord = "gpt3discord:init"
[project.urls]
Documentation = "https://github.com/Kav-K/GPT3Discord/#readme"
Issues = "https://github.com/Kav-K/GPT3Discord/issues"
Source = "https://github.com/Kav-K/GPT3Discord"
[project.optional-dependencies]
full = [
"torch==1.13.1",
"torchvision==1.14.1",
"tokenizers==0.13.3",
"numpy==1.24.2",
"scipy==1.10.1",
"huggingface-hub==0.12.1",
"more-itertools==9.0.0",
"ffmpeg-python==0.2.0",
"sentence-transformers==2.2.2",
"openai-whisper",
]
[tool.hatch.version]
path = "gpt3discord.py"
[tool.hatch.build]
include = [
"cogs/*.py",
"models/*.py",
"services/*.py",
"utils/*.py",
"gpt3discord.py",
]
#[tool.hatch.build.targets.sdist]
#packages = ["cogs", "gpt3discord.py", "models", "services"]
#[tool.hatch.build.targets.wheel]
#packages = ["cogs", "gpt3discord.py", "models", "services"]
[[tool.hatch.envs.test.matrix]]
python = ["39"]