-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 886 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 886 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
42
43
[tool.poetry]
name = "spanreed"
version = "0.1.0"
description = ""
authors = ["Amir Rachum <amir@rachum.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
todoist-api-python = "*"
python-telegram-bot = {extras = ["job-queue", "callback-data"], version = "^20.1"}
redis = "*"
python-dateutil = "*"
pyyaml = "*"
aiohttp = "^3.8.4"
Jinja2 = "*"
quart = "*"
pigpio = "^1.78"
requests = "*"
types-requests = "^2.32.0.20240602"
google-auth = "*"
google-auth-oauthlib = "*"
google-api-python-client = "*"
[tool.poetry.group.test.dependencies]
pytest = "*"
freezegun = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
mypy = "*"
types-PyYAML = "*"
types-redis = "*"
types-python-dateutil = "*"
types-requests = "*"
[tool.poetry.group.rpi.dependencies]
smbus2 = "*"
gpiozero = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"