dnd-npcs/pyproject.toml

51 lines
1.4 KiB
TOML
Raw Normal View History

2022-08-03 00:19:13 -07:00
[tool.poetry]
name = "dnd_npcs"
2023-09-29 17:23:11 -07:00
version = "0.3"
2022-08-03 00:19:13 -07:00
description = "NPC tools for the telisar homebrew campaign setting"
authors = ["evilchili <evilchili@gmail.com>"]
license = "The Unlicense"
packages = [
{ include = 'npc' },
{ include = 'language' },
2022-08-03 00:19:13 -07:00
]
[tool.poetry.dependencies]
python = "^3.10"
typer = "latest"
rich = "latest"
dice = "latest"
dnd-languages = { git = "https://github.com/evilchili/dnd-languages", branch = 'mainline' }
2022-08-03 00:19:13 -07:00
[tool.poetry.dev-dependencies]
pytest = "latest"
black = "^23.3.0"
isort = "^5.12.0"
pyproject-autoflake = "^1.0.2"
2022-08-03 00:19:13 -07:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py310']
[tool.isort]
multi_line_output = 3
line_length = 120
include_trailing_comma = true
[tool.autoflake]
check = false # return error code if changes are needed
in-place = true # make changes to files instead of printing diffs
recursive = true # drill down directories recursively
remove-all-unused-imports = true # remove all unused imports (not just those from the standard library)
ignore-init-module-imports = true # exclude __init__.py when removing unused imports
remove-duplicate-keys = true # remove all duplicate keys in objects
remove-unused-variables = true # remove unused variables
2022-08-03 00:19:13 -07:00
[tool.poetry.scripts]
npc = "npc.cli:app"
language-tool = "language.cli:app"