forked from yihong0618/xiaogpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 874 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
36
37
38
39
40
41
42
43
[project]
name = "xiaogpt"
description = "Play ChatGPT with xiaomi AI speaker"
readme = "README.md"
authors = [
{name = "yihong0618", email = "zouzou0208@gmail.com"},
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.7.1"
dependencies = [
"miservice_fork",
"openai",
"aiohttp",
"rich",
"edge-tts>=6.1.3",
"EdgeGPT==0.1.26",
]
license = {text = "MIT"}
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/yihong0618/xiaogpt"
[project.scripts]
xiaogpt = "xiaogpt.cli:main"
[tool.pdm.version]
source = "scm"
[tool.pdm.build]
includes = ["xiaogpt/"]
[[tool.pdm.autoexport]]
filename = "requirements.txt"
without-hashes = true
[build-system]
requires = ["pdm-backend>=2.0.0"]
build-backend = "pdm.backend"