-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "matrix-chatgpt-voice-bot"
description = "A bot to manage user registration tokens on a matrix server."
keywords = ["matrix", "registration", "bot", "user", "registration", "API"]
license = { text = "AGPL-3.0-or-later" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"simplematrixbotlib>=2.8,<3.0.0",
"aiohttp[speedups]",
"pyyaml",
"matrix-nio[e2e]",
"openai",
"pydub",
"SpeechRecognition",
"replicate",
"Pillow"
]
dynamic = ["version", "readme"]
[project.scripts]
matrix-chatgpt-voice-bot = "matrix_chatgpt_voice_bot.main:run_bot"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = { attr = "matrix_chatgpt_voice_bot.__version__" }
readme = { file = "README.rst" }