-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (29 loc) · 915 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "build_app"
version = "0.1.0"
description = "A project that runs a custom build script."
requires-python = ">=3.11"
dependencies = ["pillow>=11.0.0", "toml>=0.10.2"]
[tool.setuptools]
packages = {find = {where = ["build_app"], exclude = ["components", "style", "node_modules"]}}
[project.optional-dependencies]
lint = ["black>=24.10.0", "isort>=5.13.2", "pylint>=3.3.1", "mypy>=1.12.0", "types-toml>=0.10.8", "ruff>=0.8.4"]
[tool.black]
line-length = 100
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.rh1.favicon]
text = "RH"
font = "style/fonts/Roboto_Mono/static/RobotoMono-Regular.ttf"
primary_color = "white"
secondary_color = "black"
write_to = "build/assets/favicon.ico"