generated from FabricMC/fabric-example-mod
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (34 loc) · 883 Bytes
/
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
[build-system]
requires = ["setuptools", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "foxnap_rpg"
description = "Resource pack generator for the FoxNap mod"
authors = [
{ name = "Gili \"OpenBagTwo\" Barlev" },
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = ["pillow", "ffmpeg-python"]
[project.urls]
"Homepage" = "https://github.com/OpenBagTwo/FoxNap/"
[project.scripts]
"FoxNapRPG" = "foxnap_rpg.cli:main"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "foxnap_rpg/_version.py"
versionfile_build = "foxnap_rpg/_version.py"
tag_prefix = "v"
parentdir_prefix = "foxnap_rpg-"
[tool.mypy]
ignore_missing_imports = true
show_error_codes = true
[tool.isort]
line_length = 88
profile = "black"
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"