-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.07 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
[project]
name = "mc3ds"
dynamic = ["version"]
authors = [
{name="Anonymous941", email="anonymous941@none.invalid"},
{name="Cracko298", email="cracko298@none.invalid"},
{name="DexrnZacAttack", email="dexrnzacattack@none.invalid"},
{name="Evocated", email="evocated@none.invalid"},
{name="Offroaders123", email="offroaders123@none.invalid"},
]
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",
"click",
"nbtlib",
"p_tqdm",
"PyNBT",
"anvil-new@git+https://github.com/Anonymous941/anvil-new",
]
[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/*"]