28 lines
581 B
TOML
28 lines
581 B
TOML
[project]
|
|
urls = { repository = "https://gitlab.krugerlabs.us/krugd/dnd_5etools_utils" }
|
|
authors = [{ name = "David Kruger" }]
|
|
name = "dnd_5etools_utils"
|
|
version = "1.0.0"
|
|
description = "Random utilities using the 5etools data"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = "MIT"
|
|
license-files = ["LICENSE"]
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
|
|
[project.scripts]
|
|
spell_templates = "dnd5etools.scripts.spell_templates:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["dnd5etools*"]
|