sort-of-pastebin/pyproject.toml

37 lines
798 B
TOML
Raw Normal View History

2023-12-29 14:02:11 +01:00
[tool.poetry]
name = "snapbin"
version = "0.1.0"
description = "A little service to store and encrypt information, deleting it once it's retrieved."
authors = ["Andreas Zweili <andreas@zweili.ch>"]
license = "GPL3.0+"
2024-04-19 18:53:12 +02:00
readme = "README.org"
2023-12-29 14:02:11 +01:00
2023-12-29 14:07:38 +01:00
[tool.pylint."MESSAGES CONTROL"]
disable = [
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
]
2023-12-29 14:02:11 +01:00
[tool.poetry.dependencies]
python = "^3.11"
flask = "^3.0.0"
cryptography = "^42.0.4"
gunicorn = "^22.0.0"
2023-12-29 14:02:11 +01:00
redis = "^5.0.1"
[tool.poetry.group.dev.dependencies]
python-lsp-server = "^1.9.0"
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
mypy = "^1.8.0"
pylint = "^3.0.3"
2023-12-29 14:07:48 +01:00
fakeredis = "^2.20.1"
2023-12-29 14:14:47 +01:00
freezegun = "^1.4.0"
black = "^24.3.0"
2023-12-29 14:02:11 +01:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"