https://github.com/aoirint/live_tool_music_generator
!!! Not working yet !!!
https://github.com/aoirint/live_tool_music_generator
Last synced: 8 months 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 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-25T05:27:05.000Z (over 1 year ago)
- Last Synced: 2025-03-15T01:34:47.974Z (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.x
poetry 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/
```