view pyproject.toml @ 25:a97a1b4f5950 default tip

release 1.7.0
author drewp@bigasterisk.com
date Thu, 24 Nov 2022 20:39:38 -0800
parents 958052c4f243
children
line wrap: on
line source

[project]
name = "background_loop"
version = "1.7.0"
description = ""
authors = [
    {name = "Drew Perttula", email = "drewp@bigasterisk.com"},
]
license = "MIT"
dependencies = [
        'prometheus_client',
]
requires-python = ">=3.9"

[project.urls]
Homepage = ""
   # url='https://projects.bigasterisk.com/background-loop/background_loop-1.0.0.tar.gz',

[project.optional-dependencies]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
    "flake8>=4.0.1",
    "yapf>=0.32.0",
    "pytest>=7.1.1",
    "pytest-watcher>=0.2.3",
]

[build-system]
requires = ["pdm-pep517>=0.12.0"]
build-backend = "pdm.pep517.api"

[tool.pytest.ini_options]
filterwarnings = [
    # The below warning is a consequence of how pytest doctest detects mocks and how DefinedNamespace behaves when an undefined attribute is being accessed.
    'ignore:Code. pytest_mock_example_attribute_that_shouldnt_exist is not defined in namespace .*:UserWarning',
    # The below warning is a consequence of how pytest detects fixtures and how DefinedNamespace behaves when an undefined attribute is being accessed.
    'ignore:Code. _pytestfixturefunction is not defined in namespace .*:UserWarning',
]