-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 894 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 894 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "admaven-data-pipeline"
version = "0.1.0"
description = "AdMaven fraud detection and competitor analysis pipeline"
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.10.0",
"beautifulsoup4>=4.12.0",
"duckdb>=1.1.0",
"huggingface-hub>=0.25.0",
"loguru>=0.7.0",
"openai>=1.0.0",
"polars>=1.9.0",
"python-dotenv>=1.0.0",
"tenacity>=9.0.0",
"modelcontextprotocol>=0.1.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0.0",
]
[tool.setuptools]
packages = ["src", "src.lib"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]