-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
65 lines (54 loc) · 1.4 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
[tool.poetry]
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"
[tool.poetry.dependencies]
python = ">=3.8"
[tool.poetry.group.dev.dependencies]
mypy = "^1.10.0"
pylint = "^3.2.0"
ruff = "^0.5.0"
[tool.poetry.scripts]
scrap = "scrapscript:main"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.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"]