feat: add pyproject.toml

This commit is contained in:
2026-05-22 11:09:24 +02:00
parent 6e0190a378
commit 8a9bb6ef4e
3 changed files with 13 additions and 1 deletions

4
.gitignore vendored
View File

@@ -3,4 +3,6 @@ __pycache__
.env
venv
.venv
*.pyc
*.pyc
uv.lock
.python-version

0
midas/__init__.py Normal file
View File

10
pyproject.toml Normal file
View File

@@ -0,0 +1,10 @@
[project]
name = "midas"
version = "0.1.0"
description = "A static-first type checking framework for Python data-frames"
readme = "README.md"
requires-python = ">=3.11"
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'