2021-04-30 06:55:57 +00:00
|
|
|
[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"
|
2021-04-30 06:55:57 +00:00
|
|
|
authors = ["Tim Van Baak <tim.vanbaak@gmail.com>"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.8"
|
|
|
|
Flask = "^1.1.2"
|
|
|
|
Flask-Login = "^0.5.0"
|
|
|
|
Flask-WTF = "^0.14.3"
|
|
|
|
SQLAlchemy = "^1.4.12"
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest = "^5.2"
|
2021-06-03 03:03:01 +00:00
|
|
|
black = "^21.5b2"
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
skip-string-normalization = true
|
|
|
|
extend-exclude = '''
|
|
|
|
^/amanuensis/cli/.*|
|
|
|
|
^/amanuensis/config/.*|
|
|
|
|
^/amanuensis/lexicon/.*|
|
|
|
|
^/amanuensis/log/.*|
|
|
|
|
^/amanuensis/models/.*|
|
|
|
|
^/amanuensis/parser/.*|
|
|
|
|
^/amanuensis/resources/.*|
|
|
|
|
^/amanuensis/server/.*|
|
|
|
|
^/amanuensis/user/.*|
|
|
|
|
^/amanuensis/__main__.py
|
|
|
|
'''
|
2021-04-30 06:55:57 +00:00
|
|
|
|
2021-05-31 22:12:33 +00:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
addopts = "--show-capture=log"
|
|
|
|
|
2021-04-30 06:55:57 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|