-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (38 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
[tool.poetry]
name = "demo-python-memory-reference-accounting"
version = "0.0.1"
description = "Demonstrating Python memory allocator reference counting and debug."
authors = ["d33bs <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
packages = [{include = "pymaccounter", from="src"}]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
[tool.poetry.group.runner.dependencies]
dagger-io = "^0.9.5"
anyio = "^4.2.0"
fire = "^0.5.0"
poethepoet = "^0.24.4"
# define poethepoet convenience access
# to test runner workflow definition
[tool.poe.tasks.run_all_tests]
cmd = """
python src/pymaccounter/runner.py \
'["test_baseline.py", \
"test_multiply_gc.collect.py", \
"test_multiply_gc.debug_leak.py", \
"test_multiply_gc.callbacks.py"]'
"""
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.vulture]
min_confidence = 80
paths = ["src"]
sort_by_size = true
verbose = true
[tool.isort]
profile = "black"
[tool.bandit.assert_used]
skips = ['*_test.py', '*test_*.py']
[tool.setuptools_scm]