Metadata-Version: 2.1
Name: physrisk-lib
Version: 0.1.2
Summary: Physical risk calculation engine
Home-page: https://github.com/os-climate/physrisk
Author: OS-Climate
Author-email: joe.moorhouse@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/os-climate
Platform: UNKNOWN
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: numpy (==1.22.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.

Pre-release versions:

```
pip install -i https://test.pypi.org/simple/ physrisk
```

Post open-source go-live:
```
pip install physrisk
```

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

```
OSC_S3_BUCKET=redhat-osc-physical-landing-647521352890
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)
```


