-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.31 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
[tool.poetry]
name = "asynckivy"
version = "0.7.1.dev0"
description = "Async library for Kivy"
authors = ["Nattōsai Mitō <[email protected]>"]
license = "MIT"
readme = 'README.md'
repository = 'https://github.com/asyncgui/asynckivy'
homepage = 'https://github.com/asyncgui/asynckivy'
keywords = ['async', 'kivy']
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Software Development :: Libraries',
'Operating System :: OS Independent',
]
packages = [
{ include = "asynckivy", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.9"
asyncgui = "~0.7"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.1"
flake8 = "^6.0.0"
kivy = "~2.3"
[tool.poetry.group.doc.dependencies]
sphinx = "^7.0.0"
sphinx-tabs = "^3.4.1"
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"