From a96e5f810bbcfb12e66685fec1e99e6d8abfd9c2 Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Mon, 8 Sep 2025 13:22:46 +0900 Subject: [PATCH] [+] init --- .gitignore | 11 +++++++++++ .python-version | 1 + README.md | 0 formtool/__init__.py | 2 ++ pyproject.toml | 7 +++++++ 5 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 .python-version create mode 100644 README.md create mode 100644 formtool/__init__.py create mode 100644 pyproject.toml 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 = []