-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
104 lines (91 loc) · 2.23 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
103
104
[project]
name = "Mephisto"
version = "0.1.2"
description = ""
authors = [
{name = "nullqwertyuiop", email = "[email protected]"},
]
dependencies = [
"avilla-workspace @ git+https://github.com/nullqwertyuiop/Avilla.git@canary/edge",
"toml>=0.10.2",
"pydantic>=2.5.3",
"uvicorn>=0.24.0.post1",
"fastapi>=0.104.1",
"psutil>=5.9.6",
"graiax-fastapi>=0.4.1",
"graia-broadcast>=0.23.4",
"graia-saya>=0.0.19",
"aiohttp>=3.9.1",
"kayaku>=0.5.4",
"richuru>=0.1.1",
"sqlalchemy>=2.0.29",
"aiosqlite>=0.20.0",
"gitpython>=3.1.43",
"elaina-flywheel>=0.6.0",
"filetype>=1.2.0",
"pdm>=2.19.1",
]
requires-python = "<3.14,>=3.12"
readme = "README.md"
license = {text = "MIT License"}
[project.optional-dependencies]
playwright = [
"graiax-text2img-playwright>=0.5.0",
"lxml>=5.1.0",
]
mysql = [
"aiomysql>=0.2.0",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.isort]
profile = "black"
[tool.towncrier]
package = "mephisto"
directory = "changelog.d"
filename = "CHANGELOG.md"
start_string = "<!-- towncrier release notes start -->\n"
underlines = ["", "", ""]
template = "changelog.d/changelog_template.ninja"
title_format = "## [{version}](https://github.com/nullqwertyuiop/Mephisto/tree/{version}) - {project_date}"
issue_format = "[#{issue}](https://github.com/nullqwertyuiop/Mephisto/issues/{issue})"
[[tool.towncrier.type]]
directory = "security"
name = "Security"
showcontent = true
[[tool.towncrier.type]]
directory = "removed"
name = "Removed"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecated"
name = "Deprecated"
showcontent = true
[[tool.towncrier.type]]
directory = "added"
name = "Added"
showcontent = true
[[tool.towncrier.type]]
directory = "changed"
name = "Changed"
showcontent = true
[[tool.towncrier.type]]
directory = "fixed"
name = "Fixed"
showcontent = true
[[tool.towncrier.type]]
directory = "chore"
name = "Other tasks"
showcontent = true
[tool.pdm.build]
includes = []
[tool.pdm.dev-dependencies]
dev = [
"pre-commit>=3.5.0",
"towncrier>=23.11.0",
"flake8>=6.1.0",
"isort>=5.12.0",
"black>=23.11.0",
"-e git+https://github.com/nullqwertyuiop/Avilla.git@canary/edge#egg=avilla-workspace",
]