forked from tekknolagi/scrapscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.23 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
[project]
authors = [
"Max Bernstein <[email protected]>",
"Chris Gregory <[email protected]>",
]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
description = "Scrapscript interpreter"
keywords = ["scrapscript", "interpreter"]
license = "MIT"
name = "scrapscript"
readme = "README.md"
repository = "https://github.com/tekknolagi/scrapscript"
version = "0.1.1"
requires-python = ">=3.8"
[tool.uv]
dev-dependencies = ["mypy~=1.10.0", "pylint~=3.2.0", "ruff~=0.5.0"]
[tool.mypy]
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.pylint.basic]
good-names = ["i", "x"]
notes = ["FIXME"]
[tool.pylint.format]
max-line-length = 120
[tool.pylint.messages_control]
disable = [
"missing-function-docstring",
"missing-module-docstring",
"missing-class-docstring",
]
[tool.pylint.reports]
output-format = "colorized"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = ["E741"]