From 0777157eeaed395c379940769fd117f2baf31d1e Mon Sep 17 00:00:00 2001 From: Zachary Hampton <69336300+ZacharyHampton@users.noreply.github.com> Date: Fri, 15 Sep 2023 12:58:52 -0700 Subject: [PATCH] - init --- .gitignore | 1 + README.md | 0 homeharvest/__init__.py | 0 pyproject.toml | 14 ++++++++++++++ tests/__init__.py | 0 5 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 homeharvest/__init__.py create mode 100644 pyproject.toml create mode 100644 tests/__init__.py 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