forked from ClanGenOfficial/clangen
-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (56 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
59 lines (56 loc) · 1.02 KB
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
57
58
59
[project]
name = "clangen"
version = "0.7.9"
description = "Fan-edit of the warrior cat clangen game"
license = "MPL-2.0"
authors = [
{ name = "Sablesteel", email = "noemail@null.com" },
]
readme = "README.md"
keywords = [
"game",
"warrior cat",
"fan-edit",
"warrior cats",
]
requires-python = ">=3.10"
dependencies = [
"black~=23.0",
"cryptography~=42.0",
"pgpy~=0.6",
"platformdirs~=3.3",
"pygame-ce~=2.2",
"pygame-gui~=0.6",
"requests~=2.28",
"strenum~=0.4",
"tomli>=2.2.1",
"ujson~=5.7",
]
[dependency-groups]
build = [
"pillow~=9.5",
"pyinstaller~=6.6",
"setuptools~=67.7",
"wheel~=0.40",
]
dev = [
"pytest~=8.2",
]
docs = [
"mkdocs~=1.6",
"mkdocs-git-committers-plugin-2>=2.4.1",
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
"mkdocs-material>=9.5.49",
]
test = [
"jsonschema>=4.23.0",
"pylint>=2.17.3",
]
[project.optional-dependencies]
discord = [
"pypresence~=4.2",
]
[tool.pytest.ini_options]
pythonpath = [
"."
]