dnd/deadsands/pyproject.toml

68 lines
2.0 KiB
TOML
Raw Permalink Normal View History

2022-07-30 15:00:24 -07:00
[tool.poetry]
name = 'dnd'
version = '1.0'
license = 'The Unlicense'
authors = ['Greg Boyington <evilchili@gmail.com>']
description = 'Source for a homebrew DND campaign toolset.'
packages = [
2022-07-30 17:00:33 -07:00
{ include = "site_tools" }
2022-07-30 15:00:24 -07:00
]
[tool.poetry.dependencies]
2022-08-02 18:20:45 -07:00
python = "^3.10"
2022-07-30 15:00:24 -07:00
pelican = "^4.7.2"
pelican-drafts = "^0.1.1"
pelican-sitemap = "^1.0.2"
# local wotsits
2024-01-16 19:43:10 -08:00
dmsh = { git = "https://github.com/evilchili/dmsh", branch = 'main' }
dnd-npcs = { git = "https://github.com/evilchili/dnd-npcs", branch = 'main' }
2023-12-04 21:08:35 -08:00
dnd-rolltable = { git = "https://github.com/evilchili/dnd-rolltable", branch = 'main' }
dnd-calendar = { git = "https://github.com/evilchili/dnd-calendar", branch = 'main' }
2022-08-03 00:35:09 -07:00
elethis-cipher= { git = "https://github.com/evilchili/elethis-cipher", branch = 'main' }
2023-08-20 12:07:10 -07:00
2023-07-03 14:14:03 -07:00
prompt-toolkit = "^3.0.38"
2023-12-04 21:08:35 -08:00
typer = "^0.9.0"
rich = "^13.7.0"
pyyaml = "^6.0.1"
livereload = "^2.6.3"
jinja2-simple-tags = "^0.5.0"
pynotify = "^0.1.1"
pelican-yaml-metadata = "^2.1.2"
2022-07-30 15:00:24 -07:00
[tool.poetry.scripts]
2023-08-20 12:07:10 -07:00
site = "site_tools.cli:site_app"
2022-07-30 15:00:24 -07:00
roll-table = "rolltable.cli:app"
2022-07-30 17:00:33 -07:00
pelican = "site_tools.tasks:pelican_main"
2024-01-16 19:43:10 -08:00
dmsh = "dmsh.cli:dmsh"
2022-07-30 17:00:33 -07:00
2022-07-30 15:00:24 -07:00
2023-07-04 10:59:51 -07:00
[tool.poetry.dev-dependencies]
black = "^23.3.0"
isort = "^5.12.0"
pyproject-autoflake = "^1.0.2"
2022-07-30 15:00:24 -07:00
[build-system]
requires = ['poetry-core~=1.0']
build-backend = 'poetry.core.masonry.api'
2023-07-04 10:59:51 -07:00
[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