-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (53 loc) · 1.01 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PFERD"
description = "Programm zum Flotten Einfachen Runterladen von Dateien"
version = "3.9.3"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"aiohttp>=3.8.1",
"beautifulsoup4>=4.10.0",
"rich>=11.0.0",
"keyring>=23.5.0",
"certifi>=2021.10.8"
]
requires-python = ">=3.11"
[project.urls]
Repository = "https://github.com/Garmelon/PFERD"
Issues = "https://github.com/Garmelon/PFERD/issues"
[project.scripts]
pferd = "PFERD.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "PFERD.version.VERSION"}
[tool.ruff]
line-length = 110
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = [
"UP045",
"SIM114",
"B023"
]
[dependency-groups]
dev = [
"pyinstaller>=6.16.0",
"pyright>=1.1.406",
"ruff>=0.14.1",
]