diff --git a/intake/__init__.py b/intake/__init__.py new file mode 100644 index 0000000..c79c806 --- /dev/null +++ b/intake/__init__.py @@ -0,0 +1 @@ +HELLO = "WORLD" \ No newline at end of file diff --git a/intake/__main__.py b/intake/__main__.py new file mode 100644 index 0000000..e75154b --- /dev/null +++ b/intake/__main__.py @@ -0,0 +1 @@ +print("hello world") \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a2421b1 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,6 @@ +[project] +name = "intake" +version = "0.0.1" + +[tool.setuptools] +packages = ["intake"]