-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (76 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
86 lines (76 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "AutoData"
version = "0.1.0"
description = "Automatic web data collection via multi-agent system with LLMs"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "xxx", email = "xxx@xxx.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
# Core dependencies
"langchain>=0.1.0",
"langchain-openai>=0.0.2",
"langchain-core>=0.1.0",
"langchain-community>=0.0.10",
"langchain-text-splitters>=0.0.1",
"langgraph>=0.1.0",
# LLM and AI
"openai>=1.0.0",
"anthropic>=0.8.0",
# Web and data processing
"beautifulsoup4>=4.12.0",
"requests>=2.31.0",
"aiohttp>=3.9.0",
"selenium>=4.15.0",
"playwright>=1.40.0",
# Data handling
"pandas>=2.1.0",
"numpy>=1.24.0",
# Utilities
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"loguru>=0.7.0",
"Jinja2>=3.1.0",
"tenacity>=8.2.0",
"tiktoken>=0.5.0",
"easydict>=1.10",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.21.0",
"pytest-mock>=3.12.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
"black>=23.0.0",
"pre-commit>=3.5.0",
]
[tool.ruff]
line-length = 88
target-version = "py39"
select = ["E", "F", "B", "I", "N", "UP", "PL", "RUF"]
[tool.ruff.isort]
known-first-party = ["autodata"]
[tool.mypy]
python_version = "3.9"
strict = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --cov=autodata"