-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (35 loc) · 993 Bytes
/
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
[tool.poetry]
name = "filecheck"
version = "1.0.1"
description = "A Python-native clone of LLVMs FileCheck tool"
authors = ["Anton Lydike <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/AntonLydike/filecheck"
repository = "https://github.com/AntonLydike/filecheck"
keywords = ["tests", "filecheck", "llvm"]
packages = [
{ include = "filecheck" },
{ include = "filecheck/py.typed" },
]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
lit = "^18.1.8"
pre-commit = "^3.7.1"
pyright = "^1.1.370"
pytest = "^8.2.2"
[tool.poetry.scripts]
filecheck = "filecheck.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
typeCheckingMode = "strict"
"include" = ["filecheck"]
[tool.pytest.ini_options]
python_files = ["tests/*test_*.py"]
python_classes = "Test_*"
python_functions = "test_*"
addopts = ["--durations=20", "--maxfail=5"]