2021-03-18 13:53:55 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "advlabdb"
|
|
|
|
version = "0.1.0"
|
2021-06-02 19:27:34 +00:00
|
|
|
description = "Database for the advanced physics lab on the JGU-Mainz."
|
2021-03-18 13:53:55 +00:00
|
|
|
authors = ["Mohamad Bitar <mohamad.bit@protonmail.com>"]
|
2021-06-02 19:27:34 +00:00
|
|
|
readme = "README.md"
|
2021-03-18 13:53:55 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-06-02 21:43:41 +00:00
|
|
|
python = "^3.9"
|
2021-06-02 19:27:34 +00:00
|
|
|
Flask = ">=2.0.1"
|
|
|
|
Flask-SQLAlchemy = ">=2.5.1"
|
|
|
|
Flask-WTF = ">=0.15.1"
|
|
|
|
Flask-Security-Too = ">=4.0.1"
|
|
|
|
Flask-Admin = ">=1.5.8"
|
2021-03-18 13:53:55 +00:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2021-06-02 19:27:34 +00:00
|
|
|
flake8 = "*"
|
2021-06-02 21:43:41 +00:00
|
|
|
black = "*"
|
|
|
|
isort = "*"
|
2021-03-18 13:53:55 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2021-06-02 21:43:41 +00:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 120
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
2021-06-02 21:52:15 +00:00
|
|
|
skip = ["__init__.py"]
|