-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 929 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 929 Bytes
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
[tool.poetry]
name = "snowdrop-tangled-game-engine"
version = "1.1.0"
description = "A package for the Tangled game engine and support classes."
authors = ["Geordie Rose <greatblueheron@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/snowdropquantum/snowdrop-tangled-game-package"
repository = "https://github.com/snowdropquantum/snowdrop-tangled-game-package"
documentation = "https://github.com/snowdropquantum/snowdrop-tangled-game-package"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/snowdropquantum/snowdrop-tangled-game-package/issues"
[tool.poetry.dependencies]
python = ">=3.11,<3.14"
python-dateutil = ">=2.5.3"
urllib3 = ">=2.5.0"
pydantic = ">=2.0.0"
typing-extensions = ">=4.7.1"
requests = ">=2.31.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"