From 7d6c1604e1ff6df13d8293a34da0de1054dd9264 Mon Sep 17 00:00:00 2001 From: Joscha Date: Tue, 26 Aug 2025 13:17:06 +0200 Subject: [PATCH] Create project --- .gitignore | 3 +++ .python-version | 1 + README.md | 3 +++ main.py | 6 ++++++ pyproject.toml | 7 +++++++ uv.lock | 8 ++++++++ 6 files changed, 28 insertions(+) create mode 100644 .gitignore create mode 100644 .python-version create mode 100644 README.md create mode 100644 main.py create mode 100644 pyproject.toml create mode 100644 uv.lock diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3a87733 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/*.egg-info +/.venv/ +/build/ diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..2c07333 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.11 diff --git a/README.md b/README.md new file mode 100644 index 0000000..8c901ec --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# pasch + +Python-based Arch System Config Helper diff --git a/main.py b/main.py new file mode 100644 index 0000000..4076f6c --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello world!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b22452f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "pasch" +version = "0.0.0" +description = "Python-based Arch System Config Helper" +readme = "README.md" +requires-python = ">=3.11" +dependencies = [] diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..4b185aa --- /dev/null +++ b/uv.lock @@ -0,0 +1,8 @@ +version = 1 +revision = 3 +requires-python = ">=3.11" + +[[package]] +name = "pasch" +version = "0.0.0" +source = { virtual = "." }