-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 1.03 KB
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 = "Shadow Engine"
version = "0.0.3"
description = "Shadow Engine is a live and interactive wallpaper engine for linux and windows 10"
authors = [ "DanielFvM <ds@xxxmail.eu>" ]
license = "GPL-3.0-only"
readme = "README.md"
homepage = "https://github.com/danielfvm/shadow"
repository = "https://github.com/danielfvm/shadow"
keywords = [ "linux", "windows", "shaders", "wallpapers", "wayland", "gif-animation", "glsl-shaders", "wallpaper-engine" ]
packages = [
{ include = "shadow" }
]
[tool.poetry.urls]
"Homepage" = "https://github.com/danielfvm/shadow"
"Bug Tracker" = "https://github.com/danielfvm/shadow/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.10"
xcffib = "^0.11.1"
cairocffi = "^1.3.0"
pyopengl = "^3.1.6"
screeninfo = "^0.8"
mouse = "^0.7.1"
glfw = "^2.5.3"
Pillow = "^10.0.0"
imageio = {extras = ["ffmpeg"], version = "^2.26.0"}
PyQt6 = "^6.4.2"
[tool.poetry.scripts]
shadow = "shadow.main:main"
gui = "shadow.gui:main"