-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.43 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 = "asyncpygame"
version = "0.2.0.dev0"
description = "Async/await-based framework for PyGame"
authors = ["Nattōsai Mitō <[email protected]>"]
license = "MIT"
readme = 'README.md'
repository = 'https://github.com/asyncgui/asyncpygame'
homepage = 'https://github.com/asyncgui/asyncpygame'
keywords = ['async', 'pygame']
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'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 = "asyncpygame", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.10"
asyncgui = "~0.7"
pygame-ce = "~2.5"
asyncgui-ext-clock = "~0.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
flake8 = "^6.1.0"
[tool.poetry.group.doc.dependencies]
sphinx = "^7.2.6"
sphinx-autobuild = "^2021.3.14"
furo = "^2023.9.10"
[tool.poetry.group.invest.dependencies]
matplotlib = "^3.9.2"
[tool.poetry.group.recording.dependencies]
numpy = "^2.1.2"
[tool.poetry.group.example.dependencies]
requests = "^2.32.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
xfail_strict = true
addopts = "--maxfail=4 --strict-markers"