]> git.sondrewold.no Git - complexity-regularizer.git/commitdiff
initial commit
authorSondre Wold <[email protected]>
Thu, 16 Oct 2025 12:59:59 +0000 (14:59 +0200)
committerSondre Wold <[email protected]>
Thu, 16 Oct 2025 12:59:59 +0000 (14:59 +0200)
.gitignore [new file with mode: 0644]
.python-version [new file with mode: 0644]
README.md [new file with mode: 0644]
main.py [new file with mode: 0644]
pyproject.toml [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..505a3b1
--- /dev/null
@@ -0,0 +1,10 @@
+# Python-generated files
+__pycache__/
+*.py[oc]
+build/
+dist/
+wheels/
+*.egg-info
+
+# Virtual environments
+.venv
diff --git a/.python-version b/.python-version
new file mode 100644 (file)
index 0000000..24ee5b1
--- /dev/null
@@ -0,0 +1 @@
+3.13
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/main.py b/main.py
new file mode 100644 (file)
index 0000000..858bde2
--- /dev/null
+++ b/main.py
@@ -0,0 +1,6 @@
+def main():
+    print("Hello from complexity-regularizer!")
+
+
+if __name__ == "__main__":
+    main()
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644 (file)
index 0000000..b7035d8
--- /dev/null
@@ -0,0 +1,7 @@
+[project]
+name = "complexity-regularizer"
+version = "0.1.0"
+description = "Add your description here"
+readme = "README.md"
+requires-python = ">=3.13"
+dependencies = []