-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (61 loc) · 1.54 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
[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 :: Other Audience",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki",
]
dependencies = [
"json-cfg (==0.4.2)",
"mwparserfromhell (==0.6.6)",
"pywikibot [mysql, mwoauth] (==9.6.1)",
"pywikibot-extensions (==24.9.21)",
]
description = "BSicons bot"
keywords = [ "bot", "bsicon", "mediawiki" ]
license = "MIT"
name = "bsiconsbot"
readme = "README.md"
requires-python = ">=3.11"
version = "25.1.5"
[project.scripts]
bsicons-reporter = "bsiconsbot.cli.reporter:main"
bsicons-replacer = "bsiconsbot.cli.replacer:main"
[project.urls]
source = "https://github.com/jjmc89-bot/bsiconsbot"
[tool.black]
target-version = ["py311"]
line-length = 79 # default: 88
[tool.isort]
add_imports = ["from __future__ import annotations"]
atomic = true
lines_after_imports = 2
profile = "black"
py_version = 311
[tool.mypy]
python_version = 3.11
enable_error_code = [
"ignore-without-code",
]
strict = true
disallow_subclassing_any = false
warn_return_any = false
[[tool.mypy.overrides]]
module = [
"jsoncfg.*",
"pywikibot.*",
]
ignore_missing_imports = true
[tool.poetry]
[tool.poetry.dependencies]
python = "^3.11"