amanuensis/pyproject.toml

37 lines
904 B
TOML
Raw Permalink Normal View History

[tool.poetry]
name = "amanuensis"
version = "0.1.0"
2021-04-30 07:14:37 +00:00
description = "An application for playing Lexicon, the encyclopedia RPG"
authors = ["Tim Van Baak <tim.vanbaak@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"
2021-06-12 18:42:09 +00:00
Flask = "^2.0.1"
Flask-Login = "^0.5.0"
2021-06-24 05:06:46 +00:00
Flask-WTF = "^0.15.1"
SQLAlchemy = "^1.4.12"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^21.5b2"
2021-06-03 04:31:34 +00:00
mypy = "^0.812"
2021-06-24 05:02:55 +00:00
bs4 = "^0.0.1"
2021-06-14 03:41:10 +00:00
[tool.poetry.scripts]
2021-06-15 23:18:39 +00:00
amanuensis-cli = "amanuensis.cli:main"
2021-06-14 03:41:10 +00:00
amanuensis-server = "amanuensis.server:run"
[tool.black]
2021-06-29 07:35:23 +00:00
extend-exclude = "^/amanuensis/lexicon/.*|^/amanuensis/server/[^/]*py|^/amanuensis/server/session/.*|"
2021-06-03 04:31:34 +00:00
[tool.mypy]
ignore_missing_imports = true
2021-06-29 07:35:23 +00:00
exclude = "|amanuensis/lexicon/.*|amanuensis/server/.*|amanuensis/server/session/.*|"
2021-05-31 22:12:33 +00:00
[tool.pytest.ini_options]
addopts = "--show-capture=log"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"