47 lines
879 B
TOML
47 lines
879 B
TOML
[project]
|
|
name = "pytfm"
|
|
version = "0.1.0"
|
|
description = "Python test framework for UI and API testing"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Sergey Vanyushkin", email = "pi3c@yandex.ru" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"playwright>=1.42.0",
|
|
"httpx>=0.28.0",
|
|
"pytest>=9.0.0",
|
|
"pytest-asyncio>=0.23.0",
|
|
"pydantic>=2.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/pytfm"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.15.0",
|
|
"mypy>=1.20.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
asyncio_default_fixture_loop_scope = "function"
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|
|
|
|
[tool.mypy]
|
|
strict = true
|
|
|
|
[tool.ruff]
|
|
target-version = "py313"
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "W", "B", "C4", "SIM"]
|
|
ignore = ["E501"]
|