forked from Grimrukh/soulstruct
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 1.18 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
[project]
name = "soulstruct"
description = "Inspect and mod FromSoftware games."
readme = "README.md"
version = "2.1.1"
license = "GPL-3.0-or-later"
requires-python = ">=3.11" # maximum allowed for Blender 4.5 support
keywords = ["modding", "FromSoftware", "Dark Souls", "Bloodborne", "Elden Ring", "Sekiro", "Demon's Souls"]
classifiers = [
"Programming Language :: Python :: 3",
]
authors = [
{ name = "Scott Mooney (Grimrukh)", email = "grimrukh@gmail.com" }
]
dependencies = [
"constrata>=1.3.1", # required for binary read/write (my package)
"numpy", # required for math classes/operations
"rich>=13", # required for nice printing/logging
"typer", # required for CLI
"zstandard", # required for ZSTD compression (Elden Ring regulation DCX)
]
[project.optional-dependencies]
runtime = ["psutil"]
graphs = ["matplotlib"]
sound = ["pydub"]
[project.scripts]
soulstruct = "soulstruct.__main__:app"
[project.urls]
homepage = "https://github.com/Grimrukh/soulstruct"
repository = "https://github.com/Grimrukh/soulstruct"
"Issues" = "https://github.com/Grimrukh/soulstruct/issues"