HomeHarvest/pyproject.toml

25 lines
623 B
TOML
Raw Permalink Normal View History

2023-09-15 12:58:52 -07:00
[tool.poetry]
name = "homeharvest"
2023-09-21 11:27:12 -07:00
version = "0.2.12"
2023-09-18 17:46:58 -07:00
description = "Real estate scraping library supporting Zillow, Realtor.com & Redfin."
2023-09-17 13:12:39 -07:00
authors = ["Zachary Hampton <zachary@zacharysproducts.com>", "Cullen Watson <cullen@cullen.ai>"]
2023-09-15 16:12:05 -07:00
homepage = "https://github.com/ZacharyHampton/HomeHarvest"
2023-09-15 12:58:52 -07:00
readme = "README.md"
2023-09-19 13:01:39 -07:00
[tool.poetry.scripts]
homeharvest = "homeharvest.cli:main"
2023-09-15 12:58:52 -07:00
[tool.poetry.dependencies]
python = "^3.10"
2023-09-15 15:17:37 -07:00
requests = "^2.31.0"
2023-09-17 16:30:37 -07:00
pandas = "^2.1.0"
2023-09-19 09:26:52 -07:00
openpyxl = "^3.1.2"
2023-09-15 12:58:52 -07:00
2023-09-15 15:17:37 -07:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
2023-09-15 12:58:52 -07:00
[build-system]
requires = ["poetry-core"]
2023-09-19 14:43:59 -07:00
build-backend = "poetry.core.masonry.api"