feat(cli): add basic CLI entrypoint

This commit is contained in:
HEL
2026-05-22 11:09:54 +02:00
parent 8a9bb6ef4e
commit eb79cf6dc3
3 changed files with 10 additions and 0 deletions
View File
+6
View File
@@ -0,0 +1,6 @@
import click
@click.command()
def midas():
click.echo("Welcome to Midas!")
+4
View File
@@ -4,6 +4,10 @@ version = "0.1.0"
description = "A static-first type checking framework for Python data-frames"
readme = "README.md"
requires-python = ">=3.11"
dependencies = ["click>=8.4.1"]
[project.scripts]
midas = "midas.cli.main:midas"
[build-system]
requires = ['hatchling']