-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.16 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
[tool.poetry]
name = "arcade-imgui"
version = "0.6"
description = "IMGUI integration for Python Arcade"
authors = ["Kurtis Fields <[email protected]>"]
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Games/Entertainment :: Arcade",
"Topic :: Software Development :: User Interfaces",
"Topic :: Software Development :: Libraries :: Python Modules",
]
readme = "README.md"
homepage="https://github.com/kfields/arcade-imgui"
repository="https://github.com/kfields/arcade-imgui"
documentation="https://github.com/kfields/arcade-imgui"
keywords = ["arcade", "game", "gui"]
[tool.poetry.dependencies]
python = ">=3.8, <3.12"
arcade = {version = ">=2.6, <2.8", allow-prereleases = true}
imgui = "^2.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"