mirror of
https://github.com/CodingIsOurPassion/CodingIsOurPassion.git
synced 2024-12-28 22:29:19 -06:00
20 lines
428 B
TOML
20 lines
428 B
TOML
[tool.poetry]
|
|
name = "lakewatchscraper"
|
|
version = "0.1.0"
|
|
description = "Scrape data for use in the LakeWatchAPI"
|
|
authors = ["Price Hiller <price@orion-technologies.io>"]
|
|
license = "AGPLv3"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
pydantic = "^2.7.4"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
scraper = "lakewatchscraper.__main__:main"
|