-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.03 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
[tool.poetry]
name = "cxx"
version = "0.0.0-dev"
readme = "readme.md"
description = "A C/C++ source generation package."
authors = ["Omer Lubin <omer.lubin.1337@gmail.com>"]
[tool.poetry.urls]
download = "https://pypi.org/project/cxx/#files"
source = "https://github.com/omer54463/cxx"
tracker = "https://github.com/omer54463/cxx/issues"
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.4.0"
black = "^23.9.1"
ruff = "^0.0.291"
mypy = "^1.5.1"
pytest = "^7.4.2"
pytest-mock = "^3.11.1"
[tool.mypy]
strict = true
pretty = true
exclude = ["venv", "build"]
[tool.ruff]
select = ["ALL"]
ignore = [
"A002",
"A003",
"ANN101",
"ANN102",
"D",
"EM",
"FA102",
"FBT",
"PERF401",
"PLR0913",
"PT004",
"S602",
"S603",
"TRY003",
]
[tool.ruff.per-file-ignores]
"test_*.py" = ["S101"]
"mock_*.py" = ["S101"]
"__init__.py" = ["F401"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"