commit 0777157eeaed395c379940769fd117f2baf31d1e Author: Zachary Hampton <69336300+ZacharyHampton@users.noreply.github.com> Date: Fri Sep 15 12:58:52 2023 -0700 - init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..757fee3 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/.idea \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/homeharvest/__init__.py b/homeharvest/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7fc2e63 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "homeharvest" +version = "0.1.0" +description = "Real estate scraping library for Zillow & Redfin" +authors = ["Zachary Hampton "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29