-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
67 lines (57 loc) · 1.53 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = [
"setuptools>=61.2",
"setuptools_scm[toml]>=3.4.3",
# Creating the exefs patches
"keystone-engine>=0.9.2",
"ips.py>=0.1.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "open-dread-rando"
description = "An open source randomizer patcher for Metroid Dread."
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
]
requires-python = ">=3.10"
dependencies = [
"mercury-engine-data-structures>=0.33",
"jsonschema>=4.0.0",
"json-delta>=2.0.2"
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/randovania/open-dread-rando"
[project.optional-dependencies]
test = [
"lupa",
"pytest",
"pytest-cov",
"pytest-mock",
]
# Entry Points for PyInstaller
[project.entry-points.pyinstaller40]
hook-dirs = "open_dread_rando.__pyinstaller:get_hook_dirs"
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "src/open_dread_rando/version.py"
[tool.ruff]
line-length = 120
select = ["E", "F", "W", "C90", "I", "UP"]
src = ["src"]
# Version to target for generated code.
target-version = "py39"
[tool.mypy]
files = [
"src/open_dread_rando/pickups/split_pickups.py",
"src/open_dread_rando/pickups/pickup.py",
"src/open_dread_rando/door_locks/custom_door_types.py",
]
follow_imports = "silent"
disallow_untyped_defs = true