Skip to content

Commit 6f1737d

Browse files
chore: project scaffold and packaging
0 parents  commit 6f1737d

4 files changed

Lines changed: 95 additions & 0 deletions

File tree

.gitignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*.egg-info/
5+
build/
6+
dist/
7+
.venv/
8+
venv/
9+
10+
# Test / coverage / lint
11+
.pytest_cache/
12+
.coverage
13+
htmlcov/
14+
.ruff_cache/
15+
.mypy_cache/
16+
17+
# Data, indexes, models
18+
data/
19+
*.geojson
20+
*.parquet
21+
faiss_index/
22+
*.faiss
23+
24+
# Secrets / API keys
25+
.env
26+
secrets.json
27+
28+
# OS / editor
29+
.DS_Store
30+
Thumbs.db
31+
.vscode/
32+
.idea/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Venkateswarlu Nagineni
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

pyproject.toml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[build-system]
2+
requires = ["setuptools>=68", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "aegis-disaster-intel"
7+
version = "0.1.0"
8+
description = "Event-driven disaster intelligence: live hazard feeds, agentic enrichment, geospatial risk, RAG"
9+
readme = "README.md"
10+
requires-python = ">=3.11"
11+
license = { text = "MIT" }
12+
authors = [{ name = "Venkateswarlu Nagineni" }]
13+
keywords = ["geospatial", "disaster", "langchain", "rag", "event-driven", "data-engineering"]
14+
15+
dependencies = [
16+
"pydantic>=2.6",
17+
"numpy>=1.26",
18+
"httpx>=0.27",
19+
]
20+
21+
[project.optional-dependencies]
22+
geo = ["geopandas>=0.14", "h3>=4.0", "shapely>=2.0"]
23+
ai = ["langchain>=0.2", "langchain-community>=0.2", "faiss-cpu>=1.8", "sentence-transformers>=2.7"]
24+
serve = ["fastapi>=0.110", "uvicorn>=0.29"]
25+
dev = ["pytest>=8.0", "pytest-cov>=5.0", "ruff>=0.4"]
26+
27+
[tool.setuptools.packages.find]
28+
where = ["src"]
29+
30+
[tool.ruff]
31+
line-length = 100
32+
target-version = "py311"
33+
34+
[tool.ruff.lint]
35+
select = ["E", "F", "I", "UP", "B"]
36+
37+
[tool.pytest.ini_options]
38+
testpaths = ["tests"]
39+
addopts = "-q"

src/aegis/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""Aegis: event-driven disaster intelligence with agentic enrichment and geospatial risk."""
2+
3+
__version__ = "0.1.0"

0 commit comments

Comments
 (0)