this repo has no description
1[project]
2authors = [
3 "Max Bernstein <python@bernsteinbear.com>",
4 "Chris Gregory <christopher.b.gregory@gmail.com>",
5]
6classifiers = [
7 "Intended Audience :: Developers",
8 "Topic :: Software Development",
9 "Programming Language :: Python",
10 "Programming Language :: Python :: 3.8",
11 "Programming Language :: Python :: 3.9",
12 "Programming Language :: Python :: 3.10",
13 "Programming Language :: Python :: 3.11",
14]
15description = "Scrapscript interpreter"
16keywords = ["scrapscript", "interpreter"]
17license = "MIT"
18name = "scrapscript"
19readme = "README.md"
20repository = "https://github.com/tekknolagi/scrapscript"
21version = "0.1.1"
22requires-python = ">=3.8"
23
24[tool.uv]
25dev-dependencies = ["mypy~=1.10.0", "pylint~=3.2.0", "ruff~=0.5.0"]
26
27[tool.mypy]
28disallow_incomplete_defs = true
29disallow_untyped_calls = true
30disallow_untyped_defs = true
31ignore_missing_imports = true
32
33[tool.pylint.basic]
34good-names = ["i", "x"]
35notes = ["FIXME"]
36
37[tool.pylint.format]
38max-line-length = 120
39
40[tool.pylint.messages_control]
41disable = [
42 "missing-function-docstring",
43 "missing-module-docstring",
44 "missing-class-docstring",
45]
46
47[tool.pylint.reports]
48output-format = "colorized"
49
50[tool.ruff]
51line-length = 120
52
53[tool.ruff.lint]
54ignore = ["E741"]