coach-scraper/pyproject.toml

27 lines
578 B
TOML
Raw Normal View History

2023-11-27 20:09:40 +00:00
[tool.poetry]
2023-12-09 00:48:54 +00:00
name = "coach-scraper"
version = "0.1.3"
2023-11-27 20:09:40 +00:00
description = ""
authors = ["Joshua Potter <jrpotter2112@gmail.com>"]
2023-11-27 20:09:40 +00:00
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
beautifulsoup4 = "^4.12.2"
aiohttp = "^3.8.6"
2023-12-01 14:12:40 +00:00
lxml = "^4.9.3"
psycopg2 = "^2.9.9"
lingua-language-detector = "^2.0.1"
2023-12-09 00:48:54 +00:00
typing-extensions = "^4.8.0"
2023-11-27 20:09:40 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2023-11-28 12:28:21 +00:00
[tool.poetry.scripts]
2023-12-09 00:48:54 +00:00
coach-scraper = "coach_scraper.__main__:main"
2023-12-05 19:54:12 +00:00
[[tool.mypy.overrides]]
module = ["aiohttp", "lingua"]
2023-12-05 19:54:12 +00:00
ignore_missing_imports = true