Metadata-Version: 2.4
Name: causalatee
Version: 0.0.1
Summary: A toolkit for causality deep learning.
Author-email: Tim Hagen <tim.hagen@uni-kassel.de>
Project-URL: Homepage, https://github.com/TheMrSheldon/causality-toolkit
Project-URL: Bug Tracker, https://github.com/TheMrSheldon/causality-toolkit/issues
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: pandas[pyarrow]~=2.3
Provides-Extra: tests
Requires-Dist: bandit[toml]~=1.7; extra == "tests"
Requires-Dist: mypy~=1.5; extra == "tests"
Requires-Dist: pandas-stubs~=2.0; extra == "tests"
Requires-Dist: pytest~=8.0; extra == "tests"
Requires-Dist: pytest-cov<8.0,>=5.0; extra == "tests"
Requires-Dist: runnb~=1.0; extra == "tests"
Requires-Dist: ruff<0.15,>=0.9; extra == "tests"
Requires-Dist: types-pyyaml~=6.0; extra == "tests"
Provides-Extra: huggingface
Requires-Dist: transformers>=4.40; extra == "huggingface"
Provides-Extra: docs
Requires-Dist: mkdocs~=1.6; extra == "docs"
Requires-Dist: mkdocs-material~=9.5; extra == "docs"
Requires-Dist: mkdocs-bibtex~=2.16; extra == "docs"
Requires-Dist: mkdocs-macros-plugin>=1.0; extra == "docs"
Requires-Dist: mkdocs-awesome-pages-plugin>=2.9; extra == "docs"
Requires-Dist: mike~=2.1; extra == "docs"
Requires-Dist: pypandoc_binary~=1.13; extra == "docs"

<p align="center">
   <img width=200px src="docs/assets/icon.png"/>
</p>

# Installation

```bash
pip install git+https://github.com/TheMrSheldon/causality-toolkit.git
```

# Building the Documentation

Install the docs dependencies and serve locally:

```bash
pip install -e ".[docs]"
mkdocs serve
```

To build the static site:

```bash
mkdocs build
```

The output is written to the `site/` directory.
