37 lines
964 B
TOML
37 lines
964 B
TOML
[tool.poetry]
|
|
name = "amanuensis"
|
|
version = "0.1.0"
|
|
description = "An application for playing Lexicon, the encyclopedia RPG"
|
|
authors = ["Tim Van Baak <tim.vanbaak@gmail.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
Flask = "^2.0.1"
|
|
Flask-Login = "^0.5.0"
|
|
Flask-WTF = "^0.15.1"
|
|
SQLAlchemy = "^1.4.12"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^5.2"
|
|
black = "^21.5b2"
|
|
mypy = "^0.812"
|
|
bs4 = "^0.0.1"
|
|
|
|
[tool.poetry.scripts]
|
|
amanuensis-cli = "amanuensis.cli:main"
|
|
amanuensis-server = "amanuensis.server:run"
|
|
|
|
[tool.black]
|
|
extend-exclude = "^/amanuensis/lexicon/.*|^/amanuensis/server/[^/]*py|^/amanuensis/server/lexicon/.*|^/amanuensis/server/session/.*|"
|
|
|
|
[tool.mypy]
|
|
ignore_missing_imports = true
|
|
exclude = "|amanuensis/lexicon/.*|amanuensis/server/.*|amanuensis/server/lexicon/.*|amanuensis/server/session/.*|"
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "--show-capture=log"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|