-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 839 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 839 Bytes
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
[project]
name = "charmy-gui"
version = "0.0.1"
description = ""
authors = [
{name = "XiangQinxi", email = "XiangQinxi@outlook.com"},
{name = "rgzz666", email = "tt1224@hotmail.com"},
{name = "LittleWhiteCloud", email = "placeholder@example.com"}
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"json5",
"pysdl2", "pysdl2-dll", "pycairo"
]
license = "Apache 2.0"
[tool.poetry.extras]
docs = [
"myst-parser", "sphinx-design", "furo", "sphinx-copybutton", "sphinx", "sphinxcontrib-mermaid",
]
basic = []
[tool.poetry]
packages = [{include = "charmy"}]
[tool.black]
line-length = 100
# A programmer who writes codes already formatted never needs a formatting tool
# (, but someone isn't).
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"