-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (43 loc) · 1.42 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "gk-modupdater"
version = "1.0.0"
description = "Update your old Gotham Knights .pak mods to the final (2023) build's IoStore format"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" } # MIT + an acceptable-use addendum
keywords = ["gotham-knights", "unreal-engine", "iostore", "modding", "utoc", "ucas", "pak"]
classifiers = [
"Environment :: Console",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment",
"Topic :: Utilities",
]
dependencies = []
[project.urls]
Source = "https://github.com/MostGenerousDev/GK-ModUpdater"
Issues = "https://github.com/MostGenerousDev/GK-ModUpdater/issues"
[project.scripts]
gkupdate = "gkupdate:main"
[project.optional-dependencies]
build = ["pyinstaller>=6.0"]
[tool.setuptools]
packages = ["gkmodkit"]
py-modules = ["gkupdate"]
[tool.ruff]
line-length = 90
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = [
"E501", # long lines are caught by line-length, not worth double-flagging
"B008",
]
[tool.ruff.lint.per-file-ignores]
"gkmodkit/__init__.py" = ["F401"] # deliberate re-exports
"gkmodkit/formats.py" = ["F401"] # cityhash re-exported for convenience