[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "test_project"
version = "0.1.0"
authors = [
    { name = "Author Name", email = "author.name@example.com" },
]
description = "A description of what the package is for."

[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-rA -q --strict-markers"
testpaths = [
    "tests",
    "integration",
]