-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 789 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (27 loc) · 789 Bytes
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
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-substrate"
version = "0.1.0"
description = "pytest plugin for the substrate AWS emulator"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.12"
authors = [
{name = "Scott Friedman"},
]
dependencies = ["pytest>=9.0.3"]
[project.entry-points."pytest11"]
substrate = "pytest_substrate.plugin"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
# E/F (pyflakes+pycodestyle), I (isort), SIM (flake8-simplify),
# BLE (blind-except), UP (pyupgrade). Keep the set explicit so CI is reproducible.
select = ["E", "F", "I", "SIM", "BLE", "UP"]