-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
37 lines (33 loc) · 917 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
37
[tool.poetry]
name = "tinyticker"
version = "1.1.4"
description = "A tiny Raspberry Pi powered ePaper ticker."
authors = ["Loic Coyle <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/loiccoyle/tinyticker"
keywords = ["raspberry-pi", "ticker", "stock", "crypto", "epaper", "finance"]
[tool.poetry.dependencies]
python = ">=3.9"
spidev = "^3.5"
Pillow = "^10.0.1"
cryptocompare = "^0.7.5"
pandas = "^1.3.5"
matplotlib = "^3.5.1"
mplfinance = "^0.12.7-alpha.17"
Flask = "^3.0.0"
yfinance = "^0.2.0"
qrcode = "^7.3.1"
packaging = "^23.0"
numpy = "^1.26"
watchdog = "^4.0.0"
waitress = "^3.0.0"
gpiozero = "^2.0.1"
[tool.poetry.scripts]
tinyticker = 'tinyticker.__main__:main'
tinyticker-web = 'tinyticker.web.__main__:main'
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"