Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lucmos/anypy


https://github.com/lucmos/anypy

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Generic Python Tools & Utilities


PyPi
PyPi
CI
Docs
Code style: black

A collection of python utilities, without hard dependencies

## Installation

```bash
pip install anypy
```

## Quickstart

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

## Development installation

Setup the development environment:

```bash
git clone [email protected]:lucmos/anypy.git
cd anypy
conda env create -f env.yaml
conda activate anypy
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]
```