-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 776 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (32 loc) · 776 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
[project]
name = "perfect-pixel-studio"
version = "2.2.0"
description = "A native Windows workspace for refining and exporting pixel art"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "theAmusing", email = "amusingyyy@gmail.com" }
]
keywords = [
"pixel-art",
"image-processing",
"opencv",
"desktop",
"tkinter",
]
dependencies = [
"perfect-pixel[opencv]>=0.1.2",
"numpy>=1.24",
"opencv-python>=4.8",
"Pillow>=10.0",
"tkinterdnd2>=0.6.2,<0.7",
]
[project.scripts]
perfect-pixel = "app:main"
[project.urls]
Homepage = "https://github.com/CLRedfield/Perfect-Pixel"
"Core algorithm" = "https://github.com/theamusing/perfectPixel"
[tool.ruff]
line-length = 92
target-version = "py310"