annotate pyproject.toml @ 10:6c48f6e5df31 1.1.0

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