-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (81 loc) · 2.28 KB
/
pyproject.toml
File metadata and controls
96 lines (81 loc) · 2.28 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
[project]
name = "sentinel-dispatch"
version = "0.1.0"
description = "AI-Powered Climate-Aware Emergency Triage System"
readme = "README.md"
requires-python = ">=3.10.0,<3.13.0"
license = {text = "To be determined"}
authors = [
{name = "Sentinel Dispatch Team"}
]
keywords = ["emergency", "dispatch", "wildfire", "ai", "ml", "triage"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
# Google AI/ML
"google-genai>=0.2.0",
"google-cloud-aiplatform>=1.132.0", # Vertex AI for risk models
# Data processing
# NumPy 2.0+ and pandas 2.2+ support Python 3.10+
"numpy>=2.0.0,<3.0.0",
"pandas>=2.2.0,<3.0.0",
# API clients
"requests>=2.32.0",
"aiohttp>=3.10.0",
# Geospatial
"geopy>=2.4.1",
"shapely>=2.0.4", # Requires GEOS system library
# Kafka (for ingestion services and backend API)
# Note: confluent-kafka requires librdkafka system library
# If issues occur, kafka-python is a pure Python alternative
"confluent-kafka>=2.5.0",
"kafka-python>=2.0.2",
# Backend API (FastAPI)
# FastAPI 0.115+ and Pydantic 2.10+ support Python 3.10+
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"websockets>=13.0",
"python-multipart>=0.0.12",
# Database
"sqlalchemy>=2.0.0",
"aiosqlite>=0.19.0", # Async SQLite support
# Utilities
"python-dotenv>=1.0.1",
"pydantic>=2.10.0,<3.0.0", # Pydantic v2 (v3 not yet released)
"structlog>=24.1.0", # Structured logging
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"black>=24.0.0",
"ruff>=0.5.0",
"mypy>=1.8.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"black>=24.0.0",
"ruff>=0.5.0",
"mypy>=1.8.0",
]
[tool.black]
line-length = 100
target-version = ['py310', 'py311', 'py312']
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false