-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 965 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool]
[tool.poetry]
name = "quart-events"
version = "0.4.3"
description = "aquart extension to facilitate event message brokering"
authors = ["Kyle Smith <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/smithk86/quart-events"
classifiers = [
"Intended Audience :: Developers",
"Environment :: Web Environment",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8"
quart = "*"
asyncio-multisubscriber-queue = "*"
[tool.poetry.group.dev.dependencies]
mypy = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-mypy = "*"
[tool.poetry.scripts]
pytest = "pytest:main"
[tool.poetry.plugins]
pytest11 = { quart_events = "quart_events.pytest_plugin" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--mypy"
asyncio_mode = "strict"