-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
33 lines (30 loc) · 900 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
[project]
name = "coffeebuddy"
dynamic = ["version"]
description = "WebApp for Raspi to track your teams' coffee consumption digitally."
authors = [{ name = "Stefan Hackenberg", email = "[email protected]" }]
dependencies = [
"config>=0.5.1",
"flask>=3.0.3",
"sqlalchemy>=2.0.31",
"flask-sqlalchemy>=3.1.1",
"flask-socketio>=5.3.6",
"flask-login>=0.6.3",
"psycopg2-binary>=2.9.9",
"webexteamssdk>=1.7",
"apscheduler>=3.10.4",
"holidays>=0.53",
"pytz>=2024.1",
]
requires-python = ">=3.12"
readme = "README.md"
license = { text = "MIT" }
[project.optional-dependencies]
rpi = ["mfrc522~=0.0.7", "pi-rc522~=2.3.0", "pigpio~=1.78"]
pcsc = ["pyscard>=2.0.10"]
camera = ["opencv-python>=4.10.0.84"]
dev = ["ruff>=0.5.4", "pytest>=8.3.1", "ipython>=8.26.0"]
[tool.pdm]
distribution = false
[tool.ruff.lint]
select = ["E", "F", "I", "PLC", "PLE", "W"]