-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (44 loc) · 1.03 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
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
[tool.ruff]
line-length = 100
[tool.hatch]
[tool.hatch.build]
include = [
"battle_map_tv/resources/*",
"battle_map_tv/*.py",
]
exclude = [
"tests/*",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "battle_map_tv"
authors = [
{ name="Frank", email="[email protected]" },
]
description = "Display battle maps for TTRPGs on a secondary tv"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dynamic = ["version"]
dependencies = [
"PySide6",
"opencv-python",
"numpy",
"scipy",
]
[project.urls]
Homepage = "https://github.com/Conengmo/battle-map-tv"
Issues = "https://github.com/Conengmo/battle-map-tv/issues"