forked from akazdayo/pixelart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 783 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 783 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
[project]
name = "pixelart"
version = "0.1.0"
description = "pixelart converter"
authors = [
{ name = "akazdayo", email = "[email protected]" },
]
dependencies = [
"streamlit>=1.39.0",
"opencv-python-headless>=4.10.0.84",
"numpy>=2.1.1",
"pillow>=10.4.0",
"scikit-learn>=1.5.1",
"watchdog>=4.0.2",
"colorama>=0.4.6",
"pixelart-modules>=0.1.0",
]
readme = "README.md"
requires-python = ">= 3.10"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = ["ruff>=0.5.1", "opencv-python>=4.10.0.84"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/pixelart"]
[tool.pyright]
venvPath = "."
venv = ".venv"