-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "extracto-scraper"
version = "2.0.5"
authors = [
{ name="Nishal", email="nishalamv@gmail.com" },
]
description = "AI-powered web scraper. Extract structured data using plain English."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"crawlee[playwright]>=1.0.0",
"playwright>=1.40.0",
"scrapegraphai>=1.0.0",
"pandas>=2.0.0",
"html2text>=2024.2.26",
"openpyxl>=3.1.0",
"lxml>=5.0.0",
"tabulate>=0.9.0",
"rich>=13.0.0",
"python-dotenv>=1.0.0",
"pyyaml>=6.0",
"httpx>=0.27.0",
"langchain-mistralai>=0.1.0",
"langchain-openai>=0.1.0",
"langchain-groq>=0.1.0",
"langchain-google-genai>=1.0.0",
"langchain-ollama>=0.1.0"
]
[project.optional-dependencies]
server = ["fastapi", "uvicorn"]
[project.urls]
"Homepage" = "https://github.com/nishal21/Extracto"
"Bug Tracker" = "https://github.com/nishal21/Extracto/issues"
[project.scripts]
extracto = "extracto.main:cli_entry"