-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (46 loc) · 1.23 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "koil"
version = "1.0.1"
readme = "README.md"
description = "Async for a sync world"
authors = ["jhnnsrs <[email protected]>"]
license = "CC BY-NC 3.0"
packages = [{ include = "koil" }]
[tool.poetry.dependencies]
python = "^3.8"
qtpy = { version = ">1", optional = true }
uvloop = { version = "^0.16.0", optional = true }
janus = "^1.0.0"
cloudpickle = { version = "^2.2.1", optional = true }
[tool.poetry.extras]
qtpy = ["qt"]
uvloop = ["uvloop"]
process = ["cloudpickle"]
[tool.poetry.group.dev.dependencies]
pytest = ">=7.2.0"
black = "^22.10.0"
pytest-cov = "^4.0.0"
pytest-qt = "^4.2.0"
QtPy = "^2.3.0"
pytest-asyncio = "^0.20.2"
pydantic = "^1.10.2"
autoflake = "^1.7.7"
cloudpickle = "^2.2.1"
mypy = "^1.8.0"
ruff = "^0.1.15"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_mode = "auto"
qt_api = "pyqt5"
markers = ["qt: marks tests that require a running qt application", "process: marks tests that require the process extra"]
[[tool.pydoc-markdown.loaders]]
type = "python"
search_path = ["koil"]
[tool.pydoc-markdown.renderer]
type = "docusaurus"
docs_base_path = "website/docs"
[tool.mypy]
ignore_missing_imports = true
strict = true