Metadata-Version: 2.1
Name: layskip
Version: 0.1.dev1+g1849a3a.d20240618
Summary: A new awesome project.
Home-page: https://github.com/icannistraci/layskip
Author: Irene Cannistraci
Author-email: irenecannistraci@gmail.com
License: MIT Licence
Keywords: python
Platform: UNKNOWN
Provides-Extra: docs
Provides-Extra: test
Provides-Extra: dev
License-File: LICENSE

# Layskip

<p align="center">
    <a href="https://github.com/icannistraci/layskip/actions/workflows/test_suite.yml"><img alt="CI" src=https://img.shields.io/github/workflow/status/icannistraci/layskip/Test%20Suite/main?label=main%20checks></a>
    <a href="https://icannistraci.github.io/layskip"><img alt="Docs" src=https://img.shields.io/github/deployments/icannistraci/layskip/github-pages?label=docs></a>
    <a href="https://github.com/grok-ai/nn-template"><img alt="NN Template" src="https://shields.io/badge/nn--template-0.4.0-emerald?style=flat&labelColor=gray"></a>
    <a href="https://www.python.org/downloads/"><img alt="Python" src="https://img.shields.io/badge/python-3.9-blue.svg"></a>
    <a href="https://black.readthedocs.io/en/stable/"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
</p>

A new awesome project.


## Installation

```bash
pip install git+ssh://git@github.com/icannistraci/layskip.git
```


## Quickstart

[comment]: <> (> Fill me!)


## Development installation

Setup the development environment:

```bash
git clone git@github.com:icannistraci/layskip.git
cd layskip
conda env create -f env.yaml
conda activate layskip
pre-commit install
```

Run the tests:

```bash
pre-commit run --all-files
pytest -v
```


### Update the dependencies

Re-install the project in edit mode:

```bash
pip install -e .[dev]
```


