diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a19e8bb --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,6 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[metadata] +name = "recepie_graph" \ No newline at end of file diff --git a/recipe_graph/__init__.py b/src/recipe_graph/__init__.py similarity index 100% rename from recipe_graph/__init__.py rename to src/recipe_graph/__init__.py diff --git a/recipe_graph/db.py b/src/recipe_graph/db.py similarity index 100% rename from recipe_graph/db.py rename to src/recipe_graph/db.py diff --git a/recipe_graph/insert_sites.py b/src/recipe_graph/insert_sites.py similarity index 100% rename from recipe_graph/insert_sites.py rename to src/recipe_graph/insert_sites.py diff --git a/recipe_graph/scrape.py b/src/recipe_graph/scrape.py similarity index 100% rename from recipe_graph/scrape.py rename to src/recipe_graph/scrape.py