2023-05-25 07:28:28 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "matrix-gptbot"
|
2024-04-23 16:12:39 +00:00
|
|
|
version = "0.3.9"
|
2023-05-25 07:28:28 +00:00
|
|
|
|
|
|
|
authors = [
|
|
|
|
{ name="Kumi Mitterer", email="gptbot@kumi.email" },
|
2024-04-23 05:58:34 +00:00
|
|
|
{ name="Private.coffee Team", email="support@private.coffee" },
|
2023-05-25 07:28:28 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
description = "Multifunctional Chatbot for Matrix"
|
|
|
|
readme = "README.md"
|
|
|
|
license = { file="LICENSE" }
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
|
|
|
packages = [
|
|
|
|
"src/gptbot"
|
|
|
|
]
|
|
|
|
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
|
|
|
|
dependencies = [
|
2024-05-10 15:07:30 +00:00
|
|
|
"matrix-nio[e2e]>=0.24.0",
|
2023-05-25 07:28:28 +00:00
|
|
|
"markdown2[all]",
|
|
|
|
"tiktoken",
|
|
|
|
"python-magic",
|
|
|
|
"pillow",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
openai = [
|
2023-11-11 11:27:19 +00:00
|
|
|
"openai>=1.2",
|
2023-11-26 06:58:10 +00:00
|
|
|
"pydub",
|
2023-05-25 07:28:28 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
wolframalpha = [
|
|
|
|
"wolframalpha",
|
|
|
|
]
|
|
|
|
|
2024-04-23 15:07:57 +00:00
|
|
|
trackingmore = [
|
|
|
|
"trackingmore-api-tool",
|
|
|
|
]
|
|
|
|
|
2023-05-25 07:28:28 +00:00
|
|
|
all = [
|
2024-05-10 15:27:30 +00:00
|
|
|
"matrix-gptbot[openai,wolframalpha,trackingmore]",
|
2023-11-28 17:15:21 +00:00
|
|
|
"geopy",
|
|
|
|
"beautifulsoup4",
|
2023-05-25 07:28:28 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
dev = [
|
|
|
|
"matrix-gptbot[all]",
|
|
|
|
"black",
|
2023-12-05 13:50:37 +00:00
|
|
|
"hatchling",
|
|
|
|
"twine",
|
|
|
|
"build",
|
2023-05-25 07:28:28 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
2024-04-23 05:58:34 +00:00
|
|
|
"Homepage" = "https://git.private.coffee/privatecoffee/matrix-gptbot"
|
|
|
|
"Bug Tracker" = "https://git.private.coffee/privatecoffee/matrix-gptbot/issues"
|
|
|
|
"Source Code" = "https://git.private.coffee/privatecoffee/matrix-gptbot"
|
2023-05-25 07:28:28 +00:00
|
|
|
|
|
|
|
[project.scripts]
|
2024-04-11 05:41:52 +00:00
|
|
|
gptbot = "gptbot.__main__:main"
|
2023-05-25 07:28:28 +00:00
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["src/gptbot"]
|