-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 854 Bytes
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
[tool.poetry]
name = "blitz_board"
version = "0.1.0"
description = "Keyboard Warrior Haven"
authors = ["Rehatbir Singh <rehatbir.singh@gmail.com>"]
readme = "README.md"
#packages = [{include = "blitz_board"}]
[tool.poetry.dependencies]
python = "^3.9"
python-dotenv = "^1.0"
psycopg2 = "^2.9"
email-validator = "^2.0.0.post2"
flask-login = "^0.6"
flask = "^2.3"
flask-sqlalchemy = "^3.0"
flask-wtf = "^1.1"
yagmail = "^0.15"
flask-socketio = "^5.3"
simple-websocket = "^0.10"
pillow = "^10.0"
alembic = "^1.10"
gunicorn = "^21.2"
redis = "^5.0.3"
gevent = "^24.2.1"
gevent-websocket = "^0.10.1"
[tool.poetry.group.dev.dependencies]
black = "^24.3"
ruff = "^0.0"
djlint = "^1.34"
[tool.poetry.scripts]
start = "blitz_board:run"
[tool.ruff]
ignore = ["E402", "E501"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"