Skip to content

Commit 9b51bc0

Browse files
committedNov 22, 2024
set up skeleton
1 parent ff5b8ab commit 9b51bc0

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed
 

‎.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

‎README.md

Whitespace-only changes.

‎pyproject.toml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[project]
2+
name = "moin-moin"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
requires-python = ">=3.12"
7+
dependencies = []
8+
9+
[project.scripts]
10+
moin-moin = "moin_moin:main"
11+
12+
[build-system]
13+
requires = ["hatchling"]
14+
build-backend = "hatchling.build"

‎src/moin_moin/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def main() -> None:
2+
print("Hello from moin-moin!")

0 commit comments

Comments
 (0)