|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "scrapegraphai" |
3 | 3 |
|
4 | 4 | version = "0.11.1" |
5 | 5 |
|
6 | 6 | description = "A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines." |
7 | 7 | authors = [ |
8 | | - "Marco Vinciguerra <[email protected]>", |
9 | | - "Marco Perini <[email protected]>", |
10 | | - "Lorenzo Padoan <[email protected]>", |
| 8 | + { name = "Marco Vinciguerra", email = "[email protected]" }, |
| 9 | + { name = "Marco Perini", email = "[email protected]" }, |
| 10 | + { name = "Lorenzo Padoan", email = "[email protected]" } |
11 | 11 | ] |
| 12 | +dependencies = [ |
| 13 | + # python = ">=3.9, <3.12" |
| 14 | + "langchain==0.1.15", |
| 15 | + "langchain-openai==0.1.6", |
| 16 | + "langchain-google-genai==1.0.3", |
| 17 | + "langchain-groq==0.1.3", |
| 18 | + "langchain-aws==0.1.3", |
| 19 | + "langchain-anthropic==0.1.11", |
| 20 | + "html2text==2024.2.26", |
| 21 | + "faiss-cpu==1.8.0", |
| 22 | + "beautifulsoup4==4.12.3", |
| 23 | + "pandas==2.2.2", |
| 24 | + "python-dotenv==1.0.1", |
| 25 | + "tiktoken==0.6.0", |
| 26 | + "tqdm==4.66.4", |
| 27 | + "graphviz==0.20.3", |
| 28 | + "minify-html==0.15.0", |
| 29 | + "free-proxy==1.1.1", |
| 30 | + "playwright==1.43.0", |
| 31 | + "google==3.0.0", |
| 32 | + "yahoo-search-py==0.3", |
| 33 | +] |
| 34 | + |
12 | 35 | license = "MIT" |
13 | 36 | readme = "README.md" |
14 | 37 | homepage = "https://scrapegraph-ai.readthedocs.io/" |
@@ -39,40 +62,22 @@ classifiers = [ |
39 | 62 | "Programming Language :: Python :: 3", |
40 | 63 | "Operating System :: OS Independent", |
41 | 64 | ] |
| 65 | +requires-python = ">= 3.9" |
42 | 66 |
|
43 | | -[tool.poetry.dependencies] |
44 | | -python = ">=3.9, <3.12" |
45 | | -langchain = "0.1.15" |
46 | | -langchain-openai = "0.1.6" |
47 | | -langchain-google-genai = "1.0.3" |
48 | | -langchain-groq = "0.1.3" |
49 | | -langchain-aws = "0.1.3" |
50 | | -langchain-anthropic = "0.1.11" |
51 | | -html2text = "2024.2.26" |
52 | | -faiss-cpu = "1.8.0" |
53 | | -beautifulsoup4 = "4.12.3" |
54 | | -pandas = "2.2.2" |
55 | | -python-dotenv = "1.0.1" |
56 | | -tiktoken = "0.6.0" |
57 | | -tqdm = "4.66.4" |
58 | | -graphviz = "0.20.3" |
59 | | -minify-html = "0.15.0" |
60 | | -free-proxy = "1.1.1" |
61 | | -playwright = "1.43.0" |
62 | | -google = "3.0.0" |
63 | | -yahoo-search-py = "0.3" |
| 67 | +[build-system] |
| 68 | +requires = ["hatchling"] |
| 69 | +build-backend = "hatchling.build" |
64 | 70 |
|
65 | | -[tool.poetry.dev-dependencies] |
66 | | -pytest = "8.0.0" |
67 | | -pytest-mock = "3.14.0" |
| 71 | +[tool.rye] |
| 72 | +managed = true |
| 73 | +dev-dependencies = [ |
| 74 | + "pytest==8.0.0", |
| 75 | + "pytest-mock==3.14.0" |
| 76 | +] |
68 | 77 |
|
69 | | -[tool.poetry.group.docs] |
| 78 | +[tool.rye.group.docs] |
70 | 79 | optional = true |
71 | 80 |
|
72 | | -[tool.poetry.group.docs.dependencies] |
| 81 | +[tool.rye.group.docs.dependencies] |
73 | 82 | sphinx = "7.1.2" |
74 | 83 | sphinx-rtd-theme = "2.0.0" |
75 | | - |
76 | | -[build-system] |
77 | | -requires = ["poetry-core>=1.0.0"] |
78 | | -build-backend = "poetry.core.masonry.api" |
|
0 commit comments