2021-03-18 13:53:55 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "advlabdb"
|
2022-05-21 19:35:12 +00:00
|
|
|
version = "0.4.0"
|
2022-05-07 21:54:45 +00:00
|
|
|
description = "Database for an (advanced) physics lab."
|
2022-05-21 19:35:12 +00:00
|
|
|
authors = ["Mo Bitar <mo8it@proton.me>"]
|
2022-04-20 00:09:59 +00:00
|
|
|
readme = "README.adoc"
|
2021-03-18 13:53:55 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-05-07 14:56:32 +00:00
|
|
|
# TODO: Use ^ instead of >=
|
2022-04-20 00:09:59 +00:00
|
|
|
python = "^3.9"
|
2022-04-11 23:44:01 +00:00
|
|
|
Flask = ">=2.1.1"
|
2021-06-02 19:27:34 +00:00
|
|
|
Flask-SQLAlchemy = ">=2.5.1"
|
2022-04-11 23:44:01 +00:00
|
|
|
Flask-WTF = ">=1.0.1"
|
|
|
|
Flask-Security-Too = ">=4.1.3"
|
2022-02-13 19:05:29 +00:00
|
|
|
Flask-Admin = ">=1.6.0"
|
2022-04-11 23:44:01 +00:00
|
|
|
matplotlib = ">=3.5.1"
|
|
|
|
numpy = ">=1.22.3"
|
2022-04-18 15:01:51 +00:00
|
|
|
python-dotenv = ">=0.20.0"
|
2022-05-07 14:56:32 +00:00
|
|
|
gunicorn = ">=20.1.0"
|
2022-05-07 21:54:45 +00:00
|
|
|
email-validator = ">=1.2.1"
|
2022-05-29 16:13:28 +00:00
|
|
|
Flask-Migrate = ">=3.1.0"
|
2022-06-01 18:44:11 +00:00
|
|
|
MarkupSafe = ">=2.1.1"
|
2021-03-18 13:53:55 +00:00
|
|
|
|
2022-05-22 22:56:10 +00:00
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
|
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"]
|