Skip to content

Commit efd3a44

Browse files
committed
initial commit
1 parent b2b96d5 commit efd3a44

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

README.md

Whitespace-only changes.

pyproject.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[project]
2+
name = "millrun"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
authors = [
7+
{ name = "Connor Ferster", email = "[email protected]" }
8+
]
9+
requires-python = ">=3.13"
10+
dependencies = []
11+
12+
[project.scripts]
13+
millrun = "millrun:main"
14+
15+
[build-system]
16+
requires = ["hatchling"]
17+
build-backend = "hatchling.build"

src/millrun/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def main() -> None:
2+
print("Hello from millrun!")

0 commit comments

Comments
 (0)