9
|
1 [project]
|
|
2 name = "background-loop"
|
10
|
3 version = "1.1.0"
|
9
|
4 description = ""
|
|
5 authors = [
|
|
6 {name = "Drew Perttula", email = "drewp@bigasterisk.com"},
|
|
7 ]
|
|
8 license-expression = "MIT"
|
|
9 dependencies = [
|
|
10 'prometheus_client',
|
|
11 ]
|
|
12 requires-python = ">=3.9"
|
|
13
|
|
14 [project.urls]
|
|
15 Homepage = ""
|
|
16 # url='https://projects.bigasterisk.com/background-loop/background_loop-1.0.0.tar.gz',
|
|
17
|
|
18 [project.optional-dependencies]
|
|
19 [tool.pdm]
|
|
20 [tool.pdm.dev-dependencies]
|
|
21 dev = [
|
|
22 "flake8>=4.0.1",
|
|
23 "yapf>=0.32.0",
|
|
24 "pytest>=7.1.1",
|
|
25 "pytest-watcher>=0.2.3",
|
|
26 ]
|
|
27
|
|
28 [build-system]
|
|
29 requires = ["pdm-pep517>=0.12.0"]
|
|
30 build-backend = "pdm.pep517.api"
|
|
31
|
|
32 [tool.pytest.ini_options]
|
|
33 filterwarnings = [
|
|
34 # The below warning is a consequence of how pytest doctest detects mocks and how DefinedNamespace behaves when an undefined attribute is being accessed.
|
|
35 'ignore:Code. pytest_mock_example_attribute_that_shouldnt_exist is not defined in namespace .*:UserWarning',
|
|
36 # The below warning is a consequence of how pytest detects fixtures and how DefinedNamespace behaves when an undefined attribute is being accessed.
|
|
37 'ignore:Code. _pytestfixturefunction is not defined in namespace .*:UserWarning',
|
|
38 ] |