Init minimum installable package

This commit is contained in:
Tim Van Baak 2023-05-29 10:59:28 -07:00
parent 2adc7c808e
commit 3dd4909827
3 changed files with 8 additions and 0 deletions

1
intake/__init__.py Normal file
View File

@ -0,0 +1 @@
HELLO = "WORLD"

1
intake/__main__.py Normal file
View File

@ -0,0 +1 @@
print("hello world")

6
pyproject.toml Normal file
View File

@ -0,0 +1,6 @@
[project]
name = "intake"
version = "0.0.1"
[tool.setuptools]
packages = ["intake"]