Metadata-Version: 2.1
Name: carbonplan
Version: 0.4.0
Summary: CarbonPlan namespace package
Home-page: https://github.com/carbonplan/carbonplan-python
Maintainer: Joe Hamman
Maintainer-email: joe@carbonplan.org
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: all
Requires-Dist: carbonplan-data ; extra == 'all'
Requires-Dist: carbonplan-styles ; extra == 'all'
Requires-Dist: carbonplan-forest-risks ; extra == 'all'
Provides-Extra: data
Requires-Dist: carbonplan-data ; extra == 'data'
Provides-Extra: forest-offsets
Requires-Dist: carbonplan-forest-offsets ; extra == 'forest-offsets'
Provides-Extra: forest-risks
Requires-Dist: carbonplan-forest-risks ; extra == 'forest-risks'
Provides-Extra: styles
Requires-Dist: carbonplan-styles ; extra == 'styles'

<img
  src='https://carbonplan-assets.s3.amazonaws.com/monogram/dark-small.png'
  height='48'
/>

# carbonplan / carbonplan-python

**namespace package for python utilities and subprojects**

[![CI](https://github.com/carbonplan/carbonplan-python/actions/workflows/main.yaml/badge.svg)](https://github.com/carbonplan/carbonplan-python/actions/workflows/main.yaml)
![MIT License][]
[![PyPI version](https://badge.fury.io/py/carbonplan.svg)](https://badge.fury.io/py/carbonplan)

[github-badge]: https://badgen.net/badge/-/github?icon=github&label
[mit license]: https://badgen.net/badge/license/MIT/blue

This repository includes the `carbonplan` namespace Python package. The package itself includes very little of substance, and is distributed to act as the top-level namespace for other Python packages developed by CarbonPlan. Other packages include:

| Package                   | Import                             | GitHub Repo                                                                                  |
| ------------------------- | ---------------------------------- | -------------------------------------------------------------------------------------------- |
| carbonplan-data           | `import carbonplan.data`           | [https://github.com/carbonplan/data](https://github.com/carbonplan/data)                     |
| carbonplan-forest-offsets | `import carbonplan.forest_offsets` | [https://github.com/carbonplan/forest-offsets](https://github.com/carbonplan/forest-offsets) |
| carbonplan-forest-risks   | `import carbonplan.forest_risks`   | [https://github.com/carbonplan/forest-risks](https://github.com/carbonplan/forest-risks)     |
| carbonplan-styles         | `import carbonplan.styles`         | [https://github.com/carbonplan/styles](https://github.com/carbonplan/styles)                 |

## install

```shell
pip install carbonplan[all]
# or individual sub packages
pip install carbonplan[styles]
```

## usage

```python
from carbonplan.styles.mpl import set_theme
# this is the same things as
from carbonplan_styles.mpl import set_theme
```

## license

All the code in this repository is [MIT](https://choosealicense.com/licenses/mit/) licensed. We include attribution for this content, and we please request that you also maintain that attribution if using this data.

## about us

CarbonPlan is a non-profit organization that uses data and science for climate action. We aim to improve the transparency and scientific integrity of carbon removal and climate solutions through open data and tools. Find out more at [carbonplan.org](https://carbonplan.org/) or get in touch by [opening an issue](https://github.com/carbonplan/carbonplan-python/issues/new) or [sending us an email](mailto:hello@carbonplan.org).


