Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucmos/anypy
https://github.com/lucmos/anypy
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/lucmos/anypy
- Owner: lucmos
- License: mit
- Created: 2023-05-31T08:59:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-17T12:50:26.000Z (6 months ago)
- Last Synced: 2024-09-19T07:40:17.534Z (about 2 months ago)
- Language: Python
- Size: 1.86 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Generic Python Tools & Utilities
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]
```