-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 842 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (38 loc) · 842 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
35
36
37
38
39
40
41
42
43
[project]
name = "python-arch-wiki"
version = "0.1.0"
description = "A terminal interface for browsing the Arch Linux Wiki"
readme = "README.md"
authors = [
{ name = "Anton Kaplan", email = "anton.kaplan@live.ca" }
]
requires-python = ">=3.13"
dependencies = [
"autocommand>=2.2.2",
"bs4>=0.0.2",
"lxml>=6.0.2",
"platformdirs>=4.11.0",
"requests>=2.32.5",
"rich>=14.2.0",
]
[project.scripts]
python-arch-wiki = "python_arch_wiki.__main__:main"
[build-system]
requires = ["uv_build>=0.12.0,<0.13.0"]
build-backend = "uv_build"
[tool.pyright]
"venvPath" = "."
"venv" = ".venv"
"pythonPlatform" = "Linux"
"typeCheckingMode" = "standard"
[tool.ruff]
line-length = 78
# Enumerate all fixed violations.
show-fixes = true
unsafe-fixes = true
[tool.ruff.lint]
# select = []
ignore = [
# line-too-long
# "E501",
]