chore: Initial commit
This commit is contained in:
commit
a34f9b6526
|
@ -0,0 +1,4 @@
|
||||||
|
.*
|
||||||
|
!.gitignore
|
||||||
|
|
||||||
|
*.py[cod]
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Holonomia
|
||||||
|
|
||||||
|
A Blender plugin for parametric sewing pattern design.
|
|
@ -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 ...")
|
|
@ -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"
|
Loading…
Reference in New Issue