feat(cli): add basic CLI entrypoint

This commit is contained in:
2026-05-22 11:09:54 +02:00
parent 8a9bb6ef4e
commit eb79cf6dc3
3 changed files with 10 additions and 0 deletions

0
midas/cli/__init__.py Normal file
View File

6
midas/cli/main.py Normal file
View File

@@ -0,0 +1,6 @@
import click
@click.command()
def midas():
click.echo("Welcome to Midas!")

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']