-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.2 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 1.2 KB
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
37
38
39
40
41
42
43
[tool.poetry]
name = "my_app"
version = "0.4.3"
description = "This is a boilerplate application with Flask and SQLAlchemy"
authors = ["CoffeeAnon <dan@danjacobsen.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
flask = "^3.1.2"
flask-sqlalchemy = "^3.1.1"
python-dotenv = "^1.2.1"
flask-migrate = "^4.1.0"
gunicorn = "^23.0.0"
flask-restx = "^1.3.2"
psycopg2-binary = "^2.9.11"
toml = "^0.10.2"
pytest = { version = "^7.0", extras = ["type_tests"] }
mypy = { version = "^1.0", extras = ["type_tests"] }
types-requests = { version = "^2.32", extras = ["type_tests"] }
types-flask-migrate = { version = "^4.0", extras = ["type_tests"] }
types-toml = { version = "^0.10", extras = ["type_tests"] }
types-SQLAlchemy = { version = "^1.4", extras = ["type_tests"] }
coverage = { version = "^7.0", extras = ["type_tests"] }
pylint = { version = "^4.0.4", extras = ["type_tests"] }
[tool.poetry.group.dev.dependencies]
debugpy = "^1.8"
flake8 = "^7.1"
black = "^24.4"
types-requests = "^2.32"
types-flask-migrate = "^4.0"
types-toml = "^0.10"
types-SQLAlchemy = "^1.4"
mkdocs-material = "^9.5.31"
mike = "^2.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"