-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
35 lines (31 loc) · 924 Bytes
/
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
[project]
name = "signalGPT"
version = "0.2"
description = "Wrap your ChatGPT conversations in an IM app"
#readme = "./README.md"
requires-python = ">=3.11"
#license = { file="./LICENSE" }
authors = [ { name="Johannes Krattenmacher", email="[email protected]" } ]
urls.repository = "https://github.com/krateng/signalgpt"
urls.documentation = "https://github.com/krateng/signalgpt"
urls.homepage = "https://github.com/krateng/signalgpt"
keywords = ["webserver","instant-messenger","webapp","chat","ai","llm"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
dependencies = [
"bottle>=0.12.16",
"gunicorn",
"sqlalchemy>=1.4",
"PyYAML",
"openai>=1.0",
"anthropic>=0.19",
"emoji",
"doreah",
"browser-cookie3"
]
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"