19 lines
410 B
TOML
19 lines
410 B
TOML
[project]
|
|
name = "html-scraper"
|
|
version = "0.1.0"
|
|
description = "A simple API to scrape and return HTML content from any page using SeleniumBase"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"flask>=2.3.3,<4",
|
|
"flask-cors>=4.0.0,<5",
|
|
"gunicorn>=21.2.0,<23",
|
|
"python-dotenv>=1.0.0,<2",
|
|
"selenium>=4.15.2,<5",
|
|
"seleniumbase>=4.39.2,<5",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=7.0",
|
|
]
|