-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (83 loc) · 2.34 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (83 loc) · 2.34 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "resiliencemap"
version = "1.0.0"
description = "Open-source US disaster risk intelligence platform — FEMA, USGS, NOAA & Census data"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Henok Mengesha" }]
requires-python = ">=3.11"
keywords = [
"disaster", "resilience", "geospatial", "gis", "infrastructure",
"early-warning", "fema", "usgs", "noaa", "census", "postgis", "fastapi"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
# Web framework
"fastapi>=0.111.0",
"uvicorn[standard]>=0.29.0",
# Database
"sqlalchemy>=2.0.0",
"geoalchemy2>=0.15.0",
"psycopg2-binary>=2.9.9",
"alembic>=1.13.0",
# Geospatial
"geopandas>=0.14.0",
"shapely>=2.0.0",
"pyproj>=3.6.0",
"fiona>=1.9.0",
# Data handling
"pandas>=2.2.0",
"numpy>=1.26.0",
"requests>=2.31.0",
"httpx>=0.27.0",
# Config
"pydantic>=2.7.0",
"pydantic-settings>=2.2.0",
"python-dotenv>=1.0.0",
# Scheduling
"apscheduler>=3.10.0",
]
[project.urls]
Homepage = "https://henok256.github.io/resiliencemap"
Repository = "https://github.com/henok256/resiliencemap"
Documentation = "https://github.com/henok256/resiliencemap/blob/main/docs/methodology.md"
"Bug Tracker" = "https://github.com/henok256/resiliencemap/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=5.0.0",
"httpx>=0.27.0",
"ruff>=0.4.0",
"black>=24.0.0",
"mypy>=1.10.0",
]
[tool.setuptools.packages.find]
include = ["app*", "dashboard*", "ingestion*", "processing*"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "--cov=app --cov=ingestion --cov=processing --cov-report=term-missing"
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true