HomeHarvest/pyproject.toml

19 lines
408 B
TOML
Raw Normal View History

2023-09-15 12:58:52 -07:00
[tool.poetry]
name = "homeharvest"
version = "0.1.0"
description = "Real estate scraping library for Zillow & Redfin"
authors = ["Zachary Hampton <zachary@zacharysproducts.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
2023-09-15 15:17:37 -07:00
requests = "^2.31.0"
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"]
build-backend = "poetry.core.masonry.api"