-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (46 loc) · 1.7 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
[project]
name = "kirby-combat"
version = "0.16.0"
description = "HERO System 6E combat engine for Kirby VTT platform"
requires-python = ">=3.12"
# Relicensed from MIT at 0.4.0, matching kirby-cost and kirby-sheet.
# MIT grants on 0.3.x are irrevocable; this binds 0.4.0 onward.
license = {text = "PolyForm Noncommercial License 1.0.0"}
readme = "README.md"
authors = [{name = "PeterB"}]
dependencies = [
# NOT optional. Anything that derives a cost or a number of dice is
# kirby-cost's province; this package acts on the numbers it is given.
# It was undeclared and imported lazily behind try/except, which let the
# same dice arithmetic grow a second home here -- three copies of "5 STR
# to the die" across two repositories, agreeing only by luck.
"kirby-cost>=0.6.0",
# The roller moved out at 0.10.0. It is a real dependency, not a shim:
# `kirby_combat.dice` is GONE, and consumers import `kirby_dice`
# directly. A re-export here would just be a second name for one thing.
"kirby-dice>=0.1.0",
# Terrain: what is physically there and how hard it is to break.
# Owns the 6E2 p173 Objects Table, which this package re-exports
# rather than copying -- one home for a transcribed rulebook table.
"kirby-terrain>=0.1.0",
]
[project.urls]
Repository = "https://github.com/pdbethke/kirby-combat"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pytest-benchmark>=4.0",
"hypothesis>=6.100",
"ruff>=0.6",
"mypy>=1.10",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
target-version = "py312"
line-length = 100