-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (41 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
54 lines (41 loc) · 1.02 KB
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
[tool.poetry]
name = "magicparse"
version = "1.3.0"
description = "Declarative parser 🛸"
authors = ["Smartway <dev@zero-gachis.com>"]
readme = "README.md"
repository = "https://github.com/ZeroGachis/magicparse"
[tool.poetry.dependencies]
python = "^3.13"
jsonata-python = "^0.6.1"
[tool.poetry.group.dev.dependencies]
pytest = "^9"
awscli = "~1"
ruff = "^0.15"
pre-commit = "^4"
basedpyright = "^1.38"
[tool.poetry.group.ci]
optional = true
[tool.poetry.group.ci.dependencies]
pytest-cov = "^7.0.0"
pytest-github-actions-annotate-failures = "^0.3.0"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
ignore = [
"E722", # Allow for bare 'except'
]
[tool.pytest.ini_options]
python_files = ["tests/*"]
[tool.pyright]
venvPath = "."
venv = ".venv"
typeCheckingMode = "strict"
include = ["magicparse/**", "tests/**"]
executionEnvironments = [{ root = "magicparse" }]
failOnWarnings = true
deprecateTypingAliases = true