chore: Initial commit

This commit is contained in:
Leni Aniva 2025-07-06 22:58:59 -07:00
commit a34f9b6526
Signed by: aniva
GPG Key ID: D5F96287843E8DFB
5 changed files with 42 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
.*
!.gitignore
*.py[cod]

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Holonomia
A Blender plugin for parametric sewing pattern design.

13
holonomia/__init__.py Normal file
View File

@ -0,0 +1,13 @@
bl_info = {
"name": "Holonomia",
"author": "Leni Aniva",
"version": (0, 0, 1),
"blender": (4, 4, 0),
"category": "Object",
}
def register():
print("Loading Holonomia...")
def unregister():
print("Unloading Holonomial ...")

14
pyproject.toml Normal file
View File

@ -0,0 +1,14 @@
[project]
name = "holonomia"
version = "0.1.0"
description = "A Blender plugin for parametric sewing pattern design"
readme = "README.md"
authors = [
{ name = "Leni Aniva", email = "v@leni.sh" }
]
requires-python = ">=3.12"
dependencies = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

8
uv.lock Normal file
View File

@ -0,0 +1,8 @@
version = 1
revision = 2
requires-python = ">=3.12"
[[package]]
name = "holonomia"
version = "0.1.0"
source = { editable = "." }