Metadata-Version: 2.1
Name: openscm-units
Version: 0.6.3
Summary: Handling of units related to simple climate modelling.
Author-Email: Zebedee Nicholls <zebedee.nicholls@climate-energy-college.org>, Jared Lewis <jared.lewis@climate-resource.com>, Mika Pflueger <mika.pflueger@climate-resource.com>, Robert Gieseke <rob.g@web.de>, Sven Willner <sven.willer@gmail.com>
License: BSD-3-Clause
Classifier: License :: OSI Approved :: BSD License
Requires-Python: >=3.9
Requires-Dist: pint
Requires-Dist: globalwarmingpotentials
Requires-Dist: numpy
Requires-Dist: pandas
Provides-Extra: locked
Requires-Dist: appdirs==1.4.4; extra == "locked"
Requires-Dist: flexcache==0.3; extra == "locked"
Requires-Dist: flexparser==0.3.1; extra == "locked"
Requires-Dist: globalwarmingpotentials==0.11.1; extra == "locked"
Requires-Dist: numpy==2.0.2; extra == "locked"
Requires-Dist: pandas==2.2.3; extra == "locked"
Requires-Dist: pint==0.24.3; extra == "locked"
Requires-Dist: python-dateutil==2.9.0.post0; extra == "locked"
Requires-Dist: pytz==2024.2; extra == "locked"
Requires-Dist: six==1.16.0; extra == "locked"
Requires-Dist: typing-extensions==4.12.2; extra == "locked"
Requires-Dist: tzdata==2024.2; extra == "locked"
Description-Content-Type: text/markdown

<!--- --8<-- [start:description] -->
# OpenSCM-Units

Handling of units related to simple climate modelling.

**Key info :**
[![Docs](https://readthedocs.org/projects/openscm-units/badge/?version=latest)](https://openscm-units.readthedocs.io)
[![Main branch: supported Python versions](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2Fopenscm%2Fopenscm-units%2Fmain%2Fpyproject.toml)](https://github.com/openscm/openscm-units/blob/main/pyproject.toml)
[![Licence](https://img.shields.io/pypi/l/openscm-units?label=licence)](https://github.com/openscm/openscm-units/blob/main/LICENCE)

**PyPI :**
[![PyPI](https://img.shields.io/pypi/v/openscm-units.svg)](https://pypi.org/project/openscm-units/)
[![PyPI install](https://github.com/openscm/openscm-units/actions/workflows/install-pypi.yaml/badge.svg?branch=main)](https://github.com/openscm/openscm-units/actions/workflows/install-pypi.yaml)

**Conda :**
[![Conda](https://img.shields.io/conda/vn/conda-forge/openscm-units.svg)](https://anaconda.org/conda-forge/openscm-units)
[![Conda platforms](https://img.shields.io/conda/pn/conda-forge/openscm-units.svg)](https://anaconda.org/conda-forge/openscm-units)
[![Conda install](https://github.com/openscm/openscm-units/actions/workflows/install-conda.yaml/badge.svg?branch=main)](https://github.com/openscm/openscm-units/actions/workflows/install-conda.yaml)

**Tests :**
[![CI](https://github.com/openscm/openscm-units/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/openscm/openscm-units/actions/workflows/ci.yaml)
[![Coverage](https://codecov.io/gh/openscm/openscm-units/branch/main/graph/badge.svg)](https://codecov.io/gh/openscm/openscm-units)

**Other info :**
[![Last Commit](https://img.shields.io/github/last-commit/openscm/openscm-units.svg)](https://github.com/openscm/openscm-units/commits/main)
[![Contributors](https://img.shields.io/github/contributors/openscm/openscm-units.svg)](https://github.com/openscm/openscm-units/graphs/contributors)
## Status

<!---

We recommend having a status line in your repo
to tell anyone who stumbles on your repository where you're up to.
Some suggested options:

- prototype: the project is just starting up and the code is all prototype
- development: the project is actively being worked on
- finished: the project has achieved what it wanted
  and is no longer being worked on, we won't reply to any issues
- dormant: the project is no longer worked on
  but we might come back to it,
  if you have questions, feel free to raise an issue
- abandoned: this project is no longer worked on
  and we won't reply to any issues
-->

- development: the project is actively being worked on

<!--- --8<-- [end:description] -->

Full documentation can be found at:
[openscm-units.readthedocs.io](https://openscm-units.readthedocs.io/en/latest/).
We recommend reading the docs there because the internal documentation links
don't render correctly on GitHub's viewer.

## Installation

<!--- --8<-- [start:installation] -->
### As a library

If you want to use OpenSCM-Units as a library,
for example you want to use it
as a dependency in another package/application that you're building,
then we recommend installing the package with the commands below.
This method provides the loosest pins possible of all dependencies.
This gives you, the package/application developer,
as much freedom as possible to set the versions of different packages.
However, the tradeoff with this freedom is that you may install
incompatible versions of OpenSCM-Units's dependencies
(we cannot test all combinations of dependencies,
particularly ones which haven't been released yet!).
Hence, you may run into installation issues.
If you believe these are because of a problem in OpenSCM-Units,
please [raise an issue](https://github.com/openscm/openscm-units/issues).

The (non-locked) version of OpenSCM-Units can be installed with

=== "pip"
    ```sh
    pip install openscm-units
    ```

=== "mamba"
    ```sh
    mamba install -c conda-forge openscm-units
    ```

=== "conda"
    ```sh
    conda install -c conda-forge openscm-units
    ```

### As an application

If you want to use OpenSCM-Units as an application,
then we recommend using the 'locked' version of the package.
This version pins the version of all dependencies too,
which reduces the chance of installation issues
because of breaking updates to dependencies.

The locked version of OpenSCM-Units can be installed with

=== "pip"
    ```sh
    pip install openscm-units[locked]
    ```

=== "mamba"
    ```sh
    mamba install -c conda-forge openscm-units-locked
    ```

=== "conda"
    ```sh
    conda install -c conda-forge openscm-units-locked
    ```

### For developers

For development, we rely on [pdm](https://pdm-project.org/en/latest/)
for all our dependency management.
To get started, you will need to make sure that pdm is installed
([instructions here](https://pdm-project.org/en/latest/#installation),
although we found that installing with [pipx](https://pipx.pypa.io/stable/installation/)
worked perfectly for us).

For all of our work, we use our `Makefile`.
You can read the instructions out and run the commands by hand if you wish,
but we generally discourage this because it can be error prone.
In order to create your environment, run `make virtual-environment`.

If there are any issues, the messages from the `Makefile` should guide you through.
If not, please raise an issue in the
[issue tracker](https://github.com/openscm/openscm-units/issues).

For the rest of our developer docs, please see [development][development].

<!--- --8<-- [end:installation] -->

## Original template

This project was generated from this template:
[copier core python repository](https://gitlab.com/znicholls/copier-core-python-repository).
[copier](https://copier.readthedocs.io/en/stable/) is used to manage and
distribute this template.
