-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
39 lines (35 loc) · 1.02 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
[project]
name = "mc3ds"
dynamic = ["version"]
authors = [
{name="Anonymous941", email="[email protected]"},
{name="Cracko298", email="[email protected]"},
{name="DexrnZacAttack", email="[email protected]"},
{name="Evocated", email="[email protected]"},
{name="Offroaders123", email="[email protected]"},
]
description = "A small example package"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"dissect.cstruct",
"anvil-new",
"click",
"nbtlib",
"p_tqdm",
]
[project.urls]
Homepage = "https://github.com/MC3DS-Save-Research/3DS-Chunker"
Issues = "https://github.com/MC3DS-Save-Research/3DS-Chunker/issues"
[project.scripts]
3dschunker = "mc3ds.__main__:main"
ls3ds = "mc3ds.ls3ds:main"
[tool.setuptools]
package-dir = {"mc3ds" = "mc3ds"}
[tool.setuptools.package-data]
mc3ds = ["*.h", "*.json", "data/*"]