-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 739 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 739 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "epaper-movie-frame"
version = "0.1.0"
description = "Very slow movie player for e-paper displays with Flask web UI"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Ryan Lane" }
]
dependencies = [
"Flask==3.1.1",
"requests==2.28.1",
"numpy>=2.0.0",
"opencv-python==4.11.0.86",
"pillow>=11.2.1",
"qrcode==8.2",
"python-dotenv==1.1.0",
"toml==0.10.2",
"inky>=2.1.0",
]
[project.scripts]
movieframe = "movieplayer:main"
[tool.setuptools]
py-modules = ["movieplayer", "webui", "database"]
[tool.setuptools.packages.find]
where = ["."]
include = ["utils*"]