mirror of
https://codeberg.org/Mo8it/AdvLabDB.git
synced 2024-11-08 21:21:06 +00:00
31 lines
628 B
TOML
31 lines
628 B
TOML
[tool.poetry]
|
|
name = "advlabdb"
|
|
version = "0.2.0"
|
|
description = "Database for the advanced physics lab on the JGU-Mainz."
|
|
authors = ["Mohamad Bitar <mohamad.bit@protonmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
Flask = ">=2.0.2"
|
|
Flask-SQLAlchemy = ">=2.5.1"
|
|
Flask-WTF = ">=1.0.0"
|
|
Flask-Security-Too = ">=4.1.2"
|
|
Flask-Admin = ">=1.6.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
flake8 = "*"
|
|
black = "*"
|
|
isort = "*"
|
|
rope = "*"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
skip = ["__init__.py"]
|