forked from NiceneNerd/BCML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (45 loc) · 1.55 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
[build-system]
requires = ["maturin>=0.12,<0.13"]
build-backend = "maturin"
[project]
name = "bcml"
version = "3.9.5"
description = "A mod manager for The Legend of Zelda: Breath of the Wild"
author = "NiceneNerd"
author_email = "[email protected]"
# readme = { content-type = "text/markdown", file = "docs/README.md" }
# description-content-type = "text/markdown"
license = { file = "docs/LICENSE.md" }
dependencies = [
"numpy==1.19.2; platform_system == 'Windows'",
"numpy~=1.19.3; platform_system == 'Linux'",
"aamp~=1.4.1",
"byml~=2.4.2",
"botw-utils~=0.2.3",
"botw-havok~=0.3.18",
"oead~=1.2.4",
"pycrosskit~=1.0.4.1",
"pythonnet~=3.0.0a2; platform_system == 'Windows'",
"pyqtwebengine~=5.15.2; platform_system == 'Linux'",
"cefpython3~=66.1; platform_system == 'Windows'",
"pywebview~=3.6.3",
"PyYAML~=5.4.1",
"requests~=2.27.1",
"rstb>=1.2.2",
"xxhash~=1.4",
]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
]
scripts = { bcml-debug = "bcml.__main__:main_debug" }
gui-scripts = { bcml = "bcml.__main__:main" }
[project.urls]
repository = "https://github.com/NiceneNerd/BCML"
homepage = "https://gamebanana.com/tools/6624"