-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
39 lines (35 loc) · 960 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "shroudstone"
readme = "README.md"
authors = [{name = "Anthony Carapetis", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Games/Entertainment :: Real Time Strategy"
]
keywords = ["Stormgate"]
dynamic = ["version", "description"]
dependencies = [
"packaging>=20.4",
"pillow>=5.0",
"protobuf~=5.27.3",
"pydantic~=2.6",
"pystray~=0.19.5",
"python-dateutil>=2.8.2",
"pyyaml>=5",
"typer[all]~=0.9.0",
"typing_extensions>=4.7.1",
]
requires-python = ">=3.8,<4"
[project.optional-dependencies]
test = [
"pytest>=8",
"tzdata; sys_platform == 'win32'",
]
[project.urls]
Source = "https://github.com/acarapetis/shroudstone"
[project.scripts]
shroudstone = "shroudstone.__main__:main"