-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.3 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "yalafi"
version = "1.5.0"
authors = [{"name" = "Matthias Baumann"},{"name" = "torik42"}]
description = "Yet another LaTeX filter"
readme = "README-short.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Markup :: LaTeX",
"Topic :: Text Processing :: Filters",
]
[project.urls]
"Homepage" = "https://github.com/torik42/YaLafi"
"Changelog" = "https://github.com/torik42/YaLafi/blob/master/HISTORY.md"
"Documentation" = "https://github.com/torik42/YaLafi#contents"
"Issue Tracker" = "https://github.com/torik42/YaLafi/issues"
[tool.setuptools.packages.find]
include = ["yalafi*"]
[tool.pylint.main]
enable = [
"useless-suppression"
]
disable = [
"invalid-name",
"pointless-string-statement",
"unidiomatic-typecheck"
]
[tool.pylint.variables]
# Macro handler functions take these arguments, but often do not need all
ignored-argument-names = "_.*|^parser|^buf|^mac|^args|^delim|^pos"
[tool.pylint.miscellaneous]
notes = ["FIXME", "XXX", "TODO", "HACK"]
[tool.pylint.spelling]
spelling-dict = "en_GB"
spelling-private-dict-file = "pylint-spelling.txt"