-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.15 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
[project]
name = "nekobox"
version = "0.1.5"
description = "A Satori backend powered by lagrange-python"
authors = [
{name = "wyapx", email = "[email protected]"},
{name = "RF-Tar-Railt", email = "[email protected]"}
]
dependencies = [
"satori-python-server>=0.16.3",
"lagrange-python>=0.1.6",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "AGPL"}
[project.optional-dependencies]
audio = ["pysilk-mod"]
[project.scripts]
nekobox = "nekobox.__main__:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.scripts]
format = {composite = ["isort .", "black ."]}
[tool.pdm.dev-dependencies]
dev = [
"satori-python>=0.16.3",
"pysilk-mod",
"isort>=5.13.2",
"black>=24.4.2",
"lagrange-python @ git+https://github.com/LagrangeDev/lagrange-python@broken",
]
[tool.black]
line-length = 110
target-version = ["py39", "py310", "py311", "py312"]
include = '\.pyi?$'
extend-exclude = '''
'''
[tool.isort]
profile = "black"
line_length = 110
length_sort = true
skip_gitignore = true
force_sort_within_sections = true
extra_standard_library = ["typing_extensions"]