From e80a041c2ba360680b5b6f0d1dfa8e613457a24a Mon Sep 17 00:00:00 2001 From: ElectronixTM Date: Fri, 28 Mar 2025 08:55:05 +0300 Subject: [PATCH] init --- .python-version | 1 + README.md | 0 main.py | 6 ++++++ pyproject.toml | 7 +++++++ 4 files changed, 14 insertions(+) create mode 100644 .python-version create mode 100644 README.md create mode 100644 main.py create mode 100644 pyproject.toml 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..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..89cd420 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from dp32-proto!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..08304c1 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "dp32-proto" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.11" +dependencies = []