2022-07-30 09:50:36 -07:00
|
|
|
[tool.poetry]
|
|
|
|
name = 'dnd-rolltable'
|
2023-12-22 23:58:02 -08:00
|
|
|
version = '1.1.1'
|
2022-07-30 09:50:36 -07:00
|
|
|
license = 'The Unlicense'
|
|
|
|
authors = ['Greg Boyington <evilchili@gmail.com>']
|
|
|
|
description = 'Generate roll tables using weighted random distributions'
|
|
|
|
packages = [
|
|
|
|
{ include = 'rolltable' }
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-12-04 20:49:59 -08:00
|
|
|
python = "^3.10"
|
|
|
|
typer = "^0.9.0"
|
|
|
|
rich = "^13.7.0"
|
|
|
|
pyyaml = "^6.0.1"
|
2023-12-04 21:14:52 -08:00
|
|
|
csv2md = "^1.2.0"
|
2023-12-23 15:36:42 -08:00
|
|
|
random_sets = { git = "file:///home/greg/dev/random-sets", branch="main" }
|
2022-07-30 14:20:26 -07:00
|
|
|
|
2023-12-04 20:49:59 -08:00
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest = "^7.4.3"
|
2022-07-30 14:20:26 -07:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
roll-table = "rolltable.cli:app"
|
|
|
|
|
2022-07-30 09:50:36 -07:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ['poetry-core~=1.0']
|
|
|
|
build-backend = 'poetry.core.masonry.api'
|