-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (33 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
42 lines (33 loc) · 1.07 KB
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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = "altbooster"
version = "5.6.9"
description = "Утилита настройки и обслуживания ALT Linux"
readme = "README.md"
license = "MIT"
authors = [{ name = "PLAFON" }]
requires-python = ">=3.11"
[project.urls]
Homepage = "https://github.com/plafonlinux/altbooster"
Repository = "https://github.com/plafonlinux/altbooster"
Issues = "https://github.com/plafonlinux/altbooster/issues"
[project.scripts]
altbooster = "altbooster:main"
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["altbooster"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["core*", "ui*", "tabs*", "modules*"]
[tool.setuptools.package-data]
"modules" = ["*.json"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I"] # pycodestyle + pyflakes + isort
ignore = ["E501"] # длинные строки в bash-командах — допустимо
[tool.ruff.lint.per-file-ignores]
"src/tabs/apps.py" = ["E501"]