-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (87 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
106 lines (87 loc) · 1.96 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "open-geo-spy"
version = "0.3.2"
description = "Production-grade multi-agent geolocation system"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
# Core
"fastapi>=0.110.0",
"uvicorn[standard]>=0.27.0",
"python-multipart>=0.0.6",
"python-dotenv>=1.0.0",
"pydantic>=2.6.0",
"pydantic-settings>=2.2.0",
"sse-starlette>=2.0.0",
# Agentic orchestration
"langgraph>=0.2.0",
# Logging & retry
"loguru>=0.7.2",
"tenacity>=8.2.3",
# LLM / AI
"openai>=1.30.0",
# ML Models
"torch>=2.0.0",
"torchvision>=0.15.0",
"transformers>=4.44.0,<4.45.0",
"open-clip-torch>=2.24.0",
# Image processing
"pillow>=10.0.0",
"piexif>=1.1.3",
"numpy>=1.24.0",
# Browser / web
"browser-use>=0.11.0",
"curl-cffi>=0.7.0",
"aiohttp>=3.9.0",
"aiofiles>=23.2.0",
"httpx>=0.27.0",
# Geo
"shapely>=2.0.0",
"geopy>=2.4.0",
"overpy>=0.7",
"geoclip>=1.2.0",
"playwright>=1.40.0",
"reverse-geocoder>=1.5.1",
# Data
"orjson>=3.9.0",
# Calibration
"scikit-learn>=1.4.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"ruff>=0.3.0",
"mypy>=1.8.0",
]
cli = [
"typer>=0.12.0",
"rich>=13.0.0",
]
stealth = [
"browser-use-undetected>=0.1.0",
"camoufox>=0.4.0",
]
[project.scripts]
ogs = "src.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests requiring external services",
]