-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.22 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
[tool.poetry]
name = "asyncgui-ext-synctools"
version = "0.2.1.dev0"
description = "Inter-task sychronization and communication."
authors = ["Nattōsai Mitō <[email protected]>"]
license = "MIT"
readme = 'README.md'
repository = 'https://github.com/asyncgui/asyncgui-ext-synctools'
homepage = 'https://github.com/asyncgui/asyncgui-ext-synctools'
keywords = ['async', ]
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries',
'Operating System :: OS Independent',
]
packages = [
{ include = "asyncgui_ext", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.10"
asyncgui = "~0.7"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
[tool.poetry.group.doc.dependencies]
sphinx = "^7.2.6"
sphinx-autobuild = "^2021.3.14"
furo = "^2023.9.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
xfail_strict = true
addopts = "--maxfail=4 --strict-markers"