annotate pyproject.toml @ 24:958052c4f243 1.7.0

release 1.7.0
author drewp@bigasterisk.com
date Thu, 24 Nov 2022 20:39:35 -0800
parents 1154c8ba8e9e
children
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]
12
ccf401522f5c release 1.2.0
drewp@bigasterisk.com
parents: 10
diff changeset
2 name = "background_loop"
24
958052c4f243 release 1.7.0
drewp@bigasterisk.com
parents: 22
diff changeset
3 version = "1.7.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 ]
19
c07c92caa09f release 1.5.0
drewp@bigasterisk.com
parents: 17
diff changeset
8 license = "MIT"
9
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',
21
52e9c69dc1ce odd typo
drewp@bigasterisk.com
parents: 19
diff changeset
38 ]