-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.22 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "texture2d"
version = "0.1.0"
description = "CLI para geração de texturas 2D seamless via FLUX.1-dev + LoRA local"
readme = "README.md"
authors = [{ name = "Texture2D Project" }]
requires-python = ">=3.13,<3.14"
license = "MIT"
dependencies = [
"torch>=2.6.0",
"torchvision>=0.21.0",
"diffusers>=0.37.0",
"transformers>=4.40.0",
"accelerate>=0.24.0",
"huggingface-hub>=0.20.0",
"safetensors>=0.4.0",
"peft>=0.10.0",
"sdnq>=0.1.0",
"numpy>=1.24.0",
"Pillow>=10.0.0",
"python-dotenv>=1.0.0",
"click>=8.1.0",
"rich>=13.0.0",
"rich-click>=1.8.0",
"gamedev-shared @ file:../Shared",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Multimedia :: Graphics",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.0.0",
"ruff>=0.11.0",
]
[project.scripts]
texture2d = "texture2d.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
texture2d = ["cursor_skill/*.md"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]