-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (68 loc) · 1.66 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
authors = [
{ name = "JJMC89" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"pywikibot (>=9.3.0)",
]
description = "Extends the Pywikibot library"
keywords = [ "bot", "mediawiki" ]
license = { text = "MIT" }
name = "pywikibot-extensions"
readme = "README.md"
requires-python = ">=3.9"
version = "24.9.21"
[project.urls]
source = "https://github.com/JJMC89/pywikibot-extensions"
[tool.black]
target-version = ["py39"]
line-length = 79 # default: 88
[tool.coverage]
[tool.coverage.run]
plugins = [
"covdefaults",
]
[tool.isort]
atomic = true
lines_after_imports = 2
profile = "black"
py_version = 39
[tool.mypy]
python_version = 3.9
enable_error_code = [
"ignore-without-code",
]
strict = true
disallow_subclassing_any = false
[[tool.mypy.overrides]]
module = "pywikibot.*"
ignore_missing_imports = true
[tool.poetry]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.test.dependencies]
covdefaults = "2.3.0"
pytest = "8.3.4"
pytest-cov = "6.0.0"
pytest-mock = "3.14.0"
pytest-randomly = "3.16.0"
pytest-socket = "0.7.0"
[tool.pytest]
[tool.pytest.ini_options]
addopts = "--cov --no-cov-on-fail"