-
Notifications
You must be signed in to change notification settings - Fork 45
/
pyproject.toml
56 lines (48 loc) · 1.49 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
[tool.poetry]
name = "qasync"
version = "0.27.1"
description = "Python library for using asyncio in Qt-based applications"
authors = [
"Arve Knudsen <[email protected]>",
"Gerard Marull-Paretas <[email protected]>",
"Mark Harviston <[email protected]>",
"Sam McCormack",
]
maintainers = ["Alex March <[email protected]>"]
license = "BSD-2-Clause"
readme = "README.md"
homepage = "https://github.com/CabbageDevelopment/qasync"
repository = "https://github.com/CabbageDevelopment/qasync"
keywords = ["Qt", "asncio"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.21"
[tool.poetry.group.test.dependencies]
pytest = "^7.4"
pytest-cov = "^4.1"
pytest-xdist = { version = "^3.3", extras = ["psutil"] }
[tool.poetry.group.typing.dependencies]
mypy = ">=1.0"
# only used in github actions
[tool.poetry.group.github-actions]
optional = true
[tool.poetry.group.github-actions.dependencies]
pytest-github-actions-annotate-failures = "^0.1.7"
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest]
addopts = "-n auto"
testpaths = ["tests"]
[tool.pytest.ini_options]
markers = ["raises"]