forked from ClanGenOfficial/clangen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (42 loc) · 1.03 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
[tool.poetry]
name = "clangen"
version = "0.7.9"
description = "Fan-edit of the warrior cat clangen game"
license = "MPL-2.0"
authors = [
"Sablesteel <noemail@null.com>"
]
readme = "README.md"
homepage = "https://clangen.io"
repository = "https://github.com/ClanGenOfficial/clangen"
keywords = ["warriorcats", "fanedit", "game", "pygame"]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
pygame-ce = "^2.2.1"
ujson = "^5.7.0"
pygame-gui = "0.6.12"
platformdirs = "^3.3.0"
pypresence = { version = "^4.2.1", optional = true }
pgpy = "^0.6.0"
requests = "^2.28.2"
strenum = "^0.4.10"
black = { version = "^23.0", python = ">=3.8," }
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pylint = "^2.17.3"
[tool.poetry.group.build]
optional = true
[tool.poetry.group.build.dependencies]
pyinstaller = "^6.6.0"
pillow = "^9.5.0"
setuptools = "^67.7.2"
wheel = "^0.40.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
[tool.poetry.extras]
discord = ["pypresence"]
[tool.pytest.ini_options]
pythonpath = [
"."
]