-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
53 lines (47 loc) · 1.23 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
48
49
50
51
52
53
[project]
name = "splat64"
# Should be synced with src/splat/__init__.py
version = "0.32.2"
description = "A binary splitting tool to assist with decompilation and modding projects"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"PyYAML",
"pylibyaml",
"tqdm",
"intervaltree",
"colorama",
]
[project.optional-dependencies]
mips = [
"spimdisasm>=1.32.0,<2.0.0", # This value should be keep in sync with the version listed on disassembler/spimdisasm_disassembler.py
"rabbitizer>=1.12.0,<2.0.0",
"pygfxd",
"n64img>=0.3.3",
"crunch64>=0.5.1,<1.0.0",
]
dev = [
"splat64[mips]",
"mypy",
"black",
"types-PyYAML",
"types-colorama",
]
[project.urls]
Repository = "https://github.com/ethteck/splat"
Issues = "https://github.com/ethteck/splat/issues"
Changelog = "https://github.com/ethteck/splat/blob/master/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/splat"]
[tool.hatch.envs.dev]
features = ["dev"]
[project.scripts]
splat = "splat.__main__:splat_main"