https://github.com/uchuhimo/alo
A tool to combine function with DAG.
https://github.com/uchuhimo/alo
Last synced: 12 months ago
JSON representation
A tool to combine function with DAG.
- Host: GitHub
- URL: https://github.com/uchuhimo/alo
- Owner: uchuhimo
- License: other
- Created: 2019-12-07T13:12:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-11T14:02:51.000Z (over 6 years ago)
- Last Synced: 2025-03-05T00:22:37.237Z (over 1 year ago)
- Language: Python
- Size: 92.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
# alo
[](https://pypi.python.org/pypi/alo)
[](https://travis-ci.org/uchuhimo/alo)
[](https://github.com/uchuhimo/alo/actions)
[](https://alo.readthedocs.io/en/latest/?badge=latest)
[](https://pyup.io/repos/github/uchuhimo/alo/)
A tool to combine function with DAG.
- Documentation: https://alo.readthedocs.io.
## Development
### Create a virtual environment
```bash
conda env create -f environment.yml
source activate alo
```
### Install dependencies
There are two options:
- Use poetry:
```bash
poetry install
```
- Use pip:
```bash
pip install -e ".[dev]"
```
### Update dependencies
```bash
poetry update
```
### Bump version
```bash
bumpversion minor # major, minor, patch
```
### Show information about installed packages
```bash
poetry show
```
### Show dependency tree
```bash
dephell deps tree
# or
dephell deps tree pytest
```
### Install git pre-commit hooks
```bash
pre-commit install
```
# License
© uchuhimo, 2019. Licensed under an [Apache 2.0](./LICENSE) license.