1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00
AdvLabDB/pyproject.toml

32 lines
628 B
TOML
Raw Normal View History

2021-03-18 13:53:55 +00:00
[tool.poetry]
name = "advlabdb"
2021-09-10 19:41:49 +00:00
version = "0.2.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]
python = "^3.10"
Flask = ">=2.0.2"
2021-06-02 19:27:34 +00:00
Flask-SQLAlchemy = ">=2.5.1"
Flask-WTF = ">=1.0.0"
Flask-Security-Too = ">=4.1.2"
2021-06-02 19:27:34 +00:00
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 = "*"
rope = "*"
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"]