Metadata-Version: 2.1
Name: physrisk-lib
Version: 0.17.0
Summary: Physical risk calculation engine
Home-page: https://github.com/os-climate/physrisk
Author: OS-Climate
Author-email: joe.moorhouse@gmail.com
Project-URL: Bug Tracker, https://github.com/os-climate
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: affine ==2.3.0
Requires-Dist: dependency-injector ==4.41.0
Requires-Dist: numba ==0.56.4
Requires-Dist: numpy ==1.22.0
Requires-Dist: pillow ==9.4.0
Requires-Dist: pydantic ==1.9.0
Requires-Dist: python-dotenv ==0.19.2
Requires-Dist: requests ==2.27.1
Requires-Dist: scipy ==1.7.3
Requires-Dist: s3fs ==2022.1.0
Requires-Dist: zarr ==2.10.3

Physrisk
==============================
Physical risk calculation engine.

```
pip install physrisk-lib
```

Access to hazard event data requires setting of environment variables specifying the S3 Bucket, for example:

```
OSC_S3_BUCKET=physrisk-hazard-indicators
OSC_S3_ACCESS_KEY=**********6I
OSC_S3_SECRET_KEY=**********mS
```

For use in a Jupyter environment, it is recommended to put the environment variables in a credentials.env file and do, for example:
```
from dotenv import load_dotenv
load_dotenv(dotenv_path=dotenv_path, override=True)
```
