-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1002 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1002 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
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gameassets"
version = "0.2.2"
description = "CLI para batches de prompts e assets 2D/3D alinhados ao estilo do jogo"
readme = "README.md"
authors = [{ name = "GameDev" }]
requires-python = ">=3.13,<3.14"
dependencies = [
"click>=8.0",
"numpy>=1.26",
"pyyaml>=6.0",
"rich>=13.0",
"rich-click>=1.8.0",
"textual>=3.0",
"Pillow>=10.0",
"gamedev-shared @ file:../Shared",
"bpy>=5.1.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.0.0",
"ruff>=0.11.0",
]
[project.scripts]
gameassets = "gameassets.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
gameassets = ["data/*.yaml", "cursor_skill/*.md"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]