mirror of
https://github.com/jaypyles/Scraperr.git
synced 2026-05-04 00:10:44 +00:00
74 lines
1.6 KiB
TOML
74 lines
1.6 KiB
TOML
[project]
|
|
name = "web-scrape"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "Jayden Pyles", email = "jpylesbuisness@gmail.com"},
|
|
]
|
|
dependencies = [
|
|
"uvicorn>=0.30.1",
|
|
"fastapi>=0.111.0",
|
|
"boto3>=1.34.140",
|
|
"python-dotenv>=1.0.1",
|
|
"boto3-stubs[essential]>=1.34.140",
|
|
"asyncio>=3.4.3",
|
|
"aiohttp>=3.9.5",
|
|
"bs4>=0.0.2",
|
|
"lxml[html_clean]>=5.2.2",
|
|
"lxml-stubs>=0.5.1",
|
|
"fake-useragent>=1.5.1",
|
|
"requests-html>=0.10.0",
|
|
"selenium>=4.22.0",
|
|
"webdriver-manager>=4.0.1",
|
|
"pydantic>=2.8.2",
|
|
"pandas>=2.2.2",
|
|
"openpyxl>=3.1.5",
|
|
"xlsxwriter>=3.2.0",
|
|
"python-keycloak>=4.2.0",
|
|
"fastapi-keycloak>=1.0.11",
|
|
"pymongo>=4.8.0",
|
|
"motor[asyncio]>=3.5.0",
|
|
"python-jose[cryptography]>=3.3.0",
|
|
"passlib[bcrypt]>=1.7.4",
|
|
"selenium-wire>=5.1.0",
|
|
"blinker<1.8.0",
|
|
"setuptools>=71.0.4",
|
|
"docker>=7.1.0",
|
|
]
|
|
requires-python = ">=3.10"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
|
|
[tool.pdm]
|
|
distribution = true
|
|
|
|
[tool.pdm.dev-dependencies]
|
|
dev = [
|
|
"ipython>=8.26.0",
|
|
]
|
|
[tool.pyright]
|
|
include = ["./api/backend/"]
|
|
exclude = ["**/node_modules", "**/__pycache__"]
|
|
ignore = []
|
|
defineConstant = { DEBUG = true }
|
|
stubPath = ""
|
|
|
|
reportUnknownMemberType= false
|
|
reportMissingImports = true
|
|
reportMissingTypeStubs = false
|
|
reportAny = false
|
|
reportCallInDefaultInitializer = false
|
|
|
|
pythonVersion = "3.9"
|
|
pythonPlatform = "Linux"
|
|
|
|
|
|
[tool.isort]
|
|
length_sort = "1"
|
|
profile = "black"
|
|
sections = "STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
|
|
import_heading_stdlib = "STL"
|
|
import_heading_thirdparty = "PDM"
|
|
import_heading_firstparty = "LOCAL"
|
|
import_heading_localfolder = "LOCAL"
|