-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 971 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
41
42
[tool.poetry]
name = "reaktion"
version = "0.1.50"
description = ""
authors = ["jhnnsrs <jhnnsrs@gmail.com>"]
[tool.poetry.dependencies]
python = " >=3.8,<4.0"
rekuest = ">=0.2.29"
fluss = ">=0.1.61"
[tool.poetry.group.dev.dependencies]
autoflake = "^1.7.7"
pytest = "^7.2.0"
pytest-asyncio = "^0.20.2"
turms = { version = ">=0.2.3", python = "^3.9" }
aiohttp = "^3.8.3"
websockets = "^10.4"
black = "^22.10.0"
arkitekt = "0.7.8"
pytest-cov = "^4.1.0"
[tool.pytest.ini_options]
qt_api = "pyqt5"
markers = [
"integration: marks tests that require a running server",
"qt: marks tests that require a running qt application",
"serialize: marks tests that require serialization of graphs",
"actor: marks tests that require an actor",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.pydoc-markdown.loaders]]
type = "python"
search_path = ["reaktion"]
[tool.pydoc-markdown.renderer]
type = "docusaurus"