-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 991 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 991 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
[project]
name = "wiki_tool_python"
version = "0.3.2"
description = "Script to perform tasks with websites on MediaWiki engine using API"
authors = [{ name = "Artiom Khandamirov", email = "t9max@yandex.ru" }]
requires-python = ">=3.12,<4"
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
]
dependencies = [
"click>=8.1.7,<9",
"requests>=2.31.0,<3",
"requests-toolbelt>=1.0.0,<2",
]
[project.urls]
Repository = "https://github.com/ArtUshak/wiki_tool_python/"
[dependency-groups]
dev = [
"mypy>=1.5.1,<2",
"types-requests>=2.31.0.2,<3",
"rope>=1.14.0",
"ruff>=0.14.8",
]
[build-system]
requires = ["uv_build>=0.11.7,<0.21"]
build-backend = "uv_build"
[tool.ruff]
line-length = 80
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D203", "D200", "D212", "D213", "COM812", "FBT001", "FBT002", "FBT003", "PLR0912", "PLR0913", "PLR0915", "C901", "TD005"]