commit a058e506e906383320cd56ce614981161450ddd0 Author: Chris Oloff Date: Tue May 12 10:07:36 2026 +0200 initial diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..505a3b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..6324d40 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/README.md b/README.md new file mode 100644 index 0000000..2c80407 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Watt42 + +This is an initial public package for Watt42, see https://www.watt42.com for more information. + +Nothing to see here yet. diff --git a/main.py b/main.py new file mode 100644 index 0000000..95d789c --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from watt42!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..843b265 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[project] +name = "watt42" +version = "0.1.0" +description = "Public package for Watt42, see https://www.watt42.com/" +readme = "README.md" +requires-python = ">=3.14" +dependencies = []