-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (33 loc) · 870 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[tool.poetry]
name = "things_organizer"
version = "0.1.0"
description = "Simple and \"lightweight\" web application for organizing that disaster or room/garage/lab (I suppose) we all have."
authors = ["Juan Biondi <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8"
waitress = "^2.1.2"
Flask = "^2.2.2"
Flask-RESTful = "^0.3.9"
flask-sqlalchemy = "^3.0.0"
Flask-Login = "^0.6.2"
Flask-WTF = "^1.0.1"
Flask-Script = "2.0.5"
Flask-Migrate = "2.6.0"
qrcode = "^7.3.1"
prettytable = "^3.4.1"
Pillow = "^10.3.0"
email-validator = "^1.3.0"
pyzbar = "^0.1.9"
[tool.poetry.dev-dependencies]
pre-commit = "^2.18.1"
pytest = "^7.0.0"
pytest-cov = "^3.0.0"
black = "^24.3.0"
isort = "^5.10.1"
flake8 = "^4.0.1"
bandit = "^1.7.4"
pylint = "^2.15.2"
mypy = "^0.982"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"