Metadata-Version: 2.1
Name: ITR
Version: 1.0.1
Summary: Assess the temperature alignment of current targets, commitments, and investment and lending portfolios.
Home-page: https://github.com/os-climate/ITR
Download-URL: https://pypi.org/project/ITR-Temperature-Alignment-Tool/
Author: Ortec Finance
Author-email: joris.cramwinckel@ortec-finance.com
Project-URL: Bug Tracker, https://github.com/os-climate/ITR
Project-URL: Documentation, https://github.com/os-climate/ITR
Project-URL: Source Code, https://github.com/os-climate/ITR
Keywords: Climate,ITR,Finance
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# ITR
This Python module implements the ITR methodology.

## Getting started with the user interface:
If you use Anaconda environments, open an Anaconda prompt window, navigate to the 'examples' directory and run:
```
conda env create -f environment.yml
conda activate itr_ui
python ITR_UI.py
```

For virtual environments, open a command prompt/terminal window, navigate to the 'examples' directory and run:
```
python3 -m venv itr_ui
```
On Unix or MacOS, activate the environment with
```
source itr_ui/bin/activate
```
On Windows, activate the environment with
```
itr_ui\Scripts\activate.bat
```
Next, run:
```
python3 -m pip install --upgrade pip
pip install -r requirements.txt
python3 ITR_UI.py
```

Finally, open a browser window and navigate to `http://127.0.0.1:8050/` to access the user interface.

## Jupyter notebooks
To work with notebooks from the 'examples' directory please register the kernel from your virtual environment
such that it is available in Jupyter. Kernels from Anaconda environments will be available by default. Replace
`<env_name>` in the following command by your environment name (`itr_ui` or `itr_env`) and run it in your environment.
```
python -m ipykernel install --user --name=<env_name>
```
Start Jupyter by activating your environment and running
```
jupyter-notebook
```

## Getting started for Contributors/Developers:
If you use Anaconda environments, open an Anaconda prompt window, navigate to the project directory and run:
```
conda env create -f environment.yml
conda activate itr_env
```

For virtual environments, open a command prompt/terminal window, navigate to the project directory and run:
```
python3 -m venv itr_env
```
On Unix or MacOS, activate the environment with
```
source itr_env/bin/activate
```
On Windows, activate the environment with
```
itr_env\Scripts\activate.bat
```
Next, run:
```
python3 -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .[dev]
```

## User Interface
![](ITR_demo.gif)
