feat(cli): add basic CLI entrypoint
This commit is contained in:
0
midas/cli/__init__.py
Normal file
0
midas/cli/__init__.py
Normal file
6
midas/cli/main.py
Normal file
6
midas/cli/main.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import click
|
||||||
|
|
||||||
|
|
||||||
|
@click.command()
|
||||||
|
def midas():
|
||||||
|
click.echo("Welcome to Midas!")
|
||||||
@@ -4,6 +4,10 @@ version = "0.1.0"
|
|||||||
description = "A static-first type checking framework for Python data-frames"
|
description = "A static-first type checking framework for Python data-frames"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11"
|
||||||
|
dependencies = ["click>=8.4.1"]
|
||||||
|
|
||||||
|
[project.scripts]
|
||||||
|
midas = "midas.cli.main:midas"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ['hatchling']
|
requires = ['hatchling']
|
||||||
|
|||||||
Reference in New Issue
Block a user