Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aoirint/live_tool_music_generator
!!! Not working yet !!!
https://github.com/aoirint/live_tool_music_generator
Last synced: about 1 month ago
JSON representation
!!! Not working yet !!!
- Host: GitHub
- URL: https://github.com/aoirint/live_tool_music_generator
- Owner: aoirint
- License: mit
- Created: 2023-02-04T07:07:48.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-25T05:27:05.000Z (8 months ago)
- Last Synced: 2024-04-25T06:31:15.659Z (8 months ago)
- Language: Python
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# live_tool_music_generator
## Poetry reference
### Lock Python version with pyenv
```shell
env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install 3.9.x
pyenv local 3.9.xpoetry env remove python
poetry env use python
```### Install dependencies
```shell
poetry install
```### Add a package
```
poetry add 'mypackage'
poetry add --group test 'mypackage'
poetry add --group build 'mypackage'
```### Dump requirements.txt
```shell
poetry export --without-hashes -o requirements.txt
poetry export --without-hashes --with test -o requirements-test.txt
poetry export --without-hashes --with build -o requirements-build.txt
```### Run pytest
```shell
poetry run pytest tests/
```