commit a96e5f810bbcfb12e66685fec1e99e6d8abfd9c2 Author: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Mon Sep 8 13:22:46 2025 +0900 [+] init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6b562ea --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv +.idea diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..e4fba21 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.12 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/formtool/__init__.py b/formtool/__init__.py new file mode 100644 index 0000000..139597f --- /dev/null +++ b/formtool/__init__.py @@ -0,0 +1,2 @@ + + diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..de65001 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "formtool" +version = "0.1.0" +description = "ffmpeg command shortcuts" +readme = "README.md" +requires-python = ">=3.10" +dependencies = []