-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (72 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
84 lines (72 loc) · 1.65 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = [
"setuptools>=62.3",
"setuptools_scm[toml]>=3.4.3"
]
build-backend = "setuptools.build_meta"
[project]
name = "mars_patcher"
authors = [
{name = "biospark"},
]
description = "An open source randomizer patcher for Metroid Fusion."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10"
]
dependencies = [
"jsonschema",
"frozendict",
"typing-extensions",
]
dynamic = ["version"]
[project.optional-dependencies]
tooling = [
"requests",
]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
]
typing = [
"mypy",
"types-requests",
"types-pyinstaller",
"types-jsonschema",
"pre-commit"
]
[project.urls]
Repository = "https://github.com/MetroidAdvRandomizerSystem/mars-patcher"
# Entry Points for PyInstaller
[project.entry-points."pyinstaller40"]
hook-dirs = "mars_patcher.__pyinstaller:get_hook_dirs"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.package-data]
"*" = ["mf/data/**"]
"mars_patcher.mf.data" = ["**"]
[tool.setuptools_scm]
local_scheme = "no-local-version"
write_to = "src/mars_patcher/version.py"
[tool.ruff]
line-length = 100
lint.select = ["E", "F", "W", "I", "TC", "UP"]
src = ["src"]
[tool.mypy]
files = [
"src/mars_patcher/"
]
follow_imports = "silent"
disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true