-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathrequirements.txt
More file actions
79 lines (64 loc) · 1.71 KB
/
requirements.txt
File metadata and controls
79 lines (64 loc) · 1.71 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
# Earth Copilot Requirements - Simplified Architecture
# Core dependencies for Earth observation data querying with AI
# --- Azure Functions Runtime ---
azure-functions>=1.18.0
# azure-functions-worker # Commenting out due to grpcio conflicts with semantic-kernel
# --- Core web/HTTP ---
fastapi>=0.110.1
uvicorn[standard]>=0.28.0
pydantic==2.11.9 # CRITICAL: Compatible version for semantic-kernel 1.36.2
aiohttp>=3.9.0
httpx>=0.27.0
requests>=2.31.0
# --- Core Python libs ---
python-dotenv>=1.0.0
numpy>=1.24.0
pandas>=1.5.0
# --- AI/LLM (Core functionality) ---
openai==1.107.2
semantic-kernel==1.36.2 # CRITICAL: Latest stable version with updated API
# --- STAC/Earth observation (Core functionality) ---
pystac-client>=0.7.0
stackstac>=0.4.0
planetary-computer>=1.0.0
# --- Geospatial processing ---
shapely>=2.0.0
geopandas>=0.14.0
fiona>=1.9.0
pyproj>=3.6.0
rasterio>=1.3.0
# --- Data processing ---
xarray>=2023.1.0
rioxarray>=0.15.0
# --- Development/testing ---
pytest>=7.0.0
pytest-asyncio>=0.21.0
# --- Azure SDKs ---
azure-search-documents>=11.4.0
azure-identity>=1.15.0
azure-core>=1.29.0
azure-ai-ml>=1.12.0
azure-ai-formrecognizer>=3.3.0
azure-ai-contentsafety>=1.0.0
azure-storage-blob>=12.19.0
azure-ai-textanalytics>=5.3.0 # For NER and entity extraction
# --- Mapping / Geospatial / STAC (CRITICAL for Earth Copilot) ---
planetary-computer>=1.0.0
pystac-client>=0.7.5
azure-maps-search>=2.0.0b2
shapely>=2.0.0
geopy>=2.3.0
# --- UI/static helpers ---
python-multipart>=0.0.9
aiofiles>=23.2.1
# --- Data processing (optional) ---
matplotlib>=3.7.0
jupyter>=1.0.0
nbconvert>=7.0.0
# --- Utilities ---
python-dateutil>=2.8.0
# --- Dev / Test ---
pytest>=7.4.0
pytest-asyncio>=0.21.0
black>=23.0.0
flake8>=6.0.0