HomeHarvest/pyproject.toml

26 lines
592 B
TOML
Raw Permalink Normal View History

2023-09-15 12:58:52 -07:00
[tool.poetry]
name = "homeharvest"
version = "0.4.0"
2024-03-03 09:45:28 -08:00
description = "Real estate scraping library"
authors = ["Zachary Hampton <zachary@bunsly.com>", "Cullen Watson <cullen@bunsly.com>"]
2023-10-18 08:37:26 -07:00
homepage = "https://github.com/Bunsly/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.9,<3.13"
2023-09-15 15:17:37 -07:00
requests = "^2.31.0"
2023-10-05 08:03:21 -07:00
pandas = "^2.1.1"
2024-06-12 15:34:34 -07:00
pydantic = "^2.7.4"
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"
2024-04-16 12:55:44 -07:00
pre-commit = "^3.7.0"
2023-09-15 15:17:37 -07:00
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"