-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
72 lines (64 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
[build-system]
requires = ['flit_core >=3.2,<4']
build-backend = 'flit_core.buildapi'
[project]
name = "wikitextparser"
authors = [
{ name = "5j9", email = "5j9@users.noreply.github.com" },
]
description = "A simple parsing tool for MediaWiki's wikitext markup."
keywords = [
"MediaWiki",
"wikitext",
"parser",
]
readme = "README.rst"
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Text Processing",
]
requires-python = ">= 3.8"
dependencies = [
"regex >= 2022.9.11",
"wcwidth",
]
dynamic = [
"version",
]
[project.license]
text = "GNU General Public License v3 (GPLv3)"
[project.urls]
Homepage = "https://github.com/5j9/wikitextparser"
[project.optional-dependencies]
dev = [
"coverage",
]
tests = [
"pytest",
]
[tool.flit.sdist]
exclude = ['tests/', 'doc/', 'dev/']
[tool.ruff]
line-length = 79
format.quote-style = 'single'
lint.isort.combine-as-imports = true
lint.extend-select = [
'FA', # flake8-future-annotations
'I', # isort
'UP', # pyupgrade
]
lint.ignore = [
'UP027', # list comprehensions are faster than generator expressions
'E721', # Do not compare types, use `isinstance()`
]
[tool.pytest.ini_options]
addopts = '--quiet --tb=short'
[tool.pyright]
typeCheckingMode = 'standard'
reportDeprecated = "warning"
reportPropertyTypeMismatch = "warning"
reportUnnecessaryCast = "warning"
reportUnnecessaryContains = "warning"
reportUnnecessaryIsInstance = "warning"
reportUnnecessaryTypeIgnoreComment = true