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

72 lines
1 KiB
TOML
Raw Normal View History

2021-03-18 13:53:55 +00:00
[tool.poetry]
name = "advlabdb"
2023-02-02 13:02:08 +00:00
version = "0.9.0"
2022-06-05 09:13:08 +00:00
description = "Database with a web interface for labs."
2022-05-21 19:35:12 +00:00
authors = ["Mo Bitar <mo8it@proton.me>"]
2023-01-30 15:00:15 +00:00
readme = "README.md"
2021-03-18 13:53:55 +00:00
[tool.poetry.dependencies]
2023-11-02 19:30:56 +00:00
python = ">3.11,<3.12"
2023-01-30 15:00:15 +00:00
click = "^8.1"
2023-11-02 19:20:49 +00:00
email-validator = "^2.1"
2023-11-02 19:22:36 +00:00
flask = "^3.0"
2023-01-30 15:00:15 +00:00
flask-admin = "^1.6"
flask-login = "^0.6"
flask-migrate = "^4.0"
2023-11-02 19:20:59 +00:00
flask-security-Too = "^5.3"
2023-11-02 19:25:34 +00:00
flask-sqlalchemy = "^3.1"
2023-01-30 15:00:15 +00:00
flask-wtf = "^1.1"
2023-11-02 19:27:14 +00:00
gunicorn = "^21.2"
2023-01-30 15:00:15 +00:00
markupsafe = "^2.1"
matplotlib = "^3.6"
2023-11-02 19:30:56 +00:00
numpy = "^1.26"
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
2023-11-02 17:47:46 +00:00
[tool.ruff]
2023-11-02 19:04:09 +00:00
select = [
"E",
"W",
"F",
"I",
"UP",
"YTT",
"S",
"B",
"C4",
"ICN",
"PIE",
"Q",
"RET",
"SIM",
"TID",
"PTH",
"ERA",
"PL",
"NPY",
2023-11-02 19:06:16 +00:00
"PERF",
2023-11-02 19:10:06 +00:00
"RUF",
2023-11-02 19:06:16 +00:00
]
ignore = [
"E5",
"S3",
"S6",
"RET504",
"PLR0912",
"PLR0915",
"PLW2901",
"PLR2004",
"PERF203",
2023-11-02 19:10:06 +00:00
"RUF012",
2023-11-02 19:04:09 +00:00
]
2021-06-02 21:43:41 +00:00
line-length = 120
2023-11-02 17:47:46 +00:00
[tool.ruff.per-file-ignores]
"__init__.py" = ["I"]
2021-06-02 21:43:41 +00:00
[tool.isort]
profile = "black"
2021-06-02 21:52:15 +00:00
skip = ["__init__.py"]