added basic poetry set up

This commit is contained in:
Jun-te Kim 2025-03-03 12:00:25 +00:00
parent 6cae3bfab3
commit 81cad1fc90
4 changed files with 19 additions and 0 deletions

19
etl/pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[project]
name = "etl"
version = "0.1.0"
description = ""
authors = [
{name = "Jun-te Kim",email = "junte.kim@mealcraft.com"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
]
[tool.poetry]
packages = [{include = "etl", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"

0
etl/src/etl/__init__.py Normal file
View file

0
etl/tests/__init__.py Normal file
View file