15 lines
431 B
TOML
15 lines
431 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "bs-roster-parser"
|
|
version = "1.0.0"
|
|
description = "Parse BattleScribe/NewRecruit roster JSON into flat unit lists with costs, model counts, and weapon breakdowns"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = { text = "MIT" }
|
|
authors = [{ name = "Kay Kayyali" }]
|
|
|
|
[tool.setuptools]
|
|
packages = ["bs_roster_parser"] |