From 7a006bc6fdac8338c3b16be90ee4f355a8af293c Mon Sep 17 00:00:00 2001 From: Snowykami Date: Sun, 27 Apr 2025 18:24:59 +0800 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20v7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 0 .python-version | 1 + Dockerfile | 0 README.md | 0 docker-compose.yaml | 0 main.py | 6 ++++++ pyproject.toml | 7 +++++++ 7 files changed, 14 insertions(+) create mode 100644 .gitignore create mode 100644 .python-version create mode 100644 Dockerfile create mode 100644 README.md create mode 100644 docker-compose.yaml create mode 100644 main.py create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/.python-version b/.python-version new file mode 100644 index 00000000..e4fba218 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.12 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..e69de29b diff --git a/README.md b/README.md new file mode 100644 index 00000000..e69de29b diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 00000000..e69de29b diff --git a/main.py b/main.py new file mode 100644 index 00000000..aaac274c --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from liteyukibot!") + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..63e87997 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "liteyukibot" +version = "7.0.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = []