https://github.com/davidbrochart/ipyscore
A Jupyter widget for music notation
https://github.com/davidbrochart/ipyscore
Last synced: 7 months ago
JSON representation
A Jupyter widget for music notation
- Host: GitHub
- URL: https://github.com/davidbrochart/ipyscore
- Owner: davidbrochart
- License: bsd-3-clause
- Created: 2023-08-10T14:20:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-01T19:27:45.000Z (about 2 years ago)
- Last Synced: 2024-04-14T16:21:46.173Z (almost 2 years ago)
- Language: TypeScript
- Size: 1.74 MB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# ipyscore
A Jupyter widget for rendering music notation
## Installation
You can install `ipyscore` using `pip`:
```bash
pip install ipyscore
```
## Development Installation
Create a development environment:
```bash
micromamba create -n ipyscore
micromamba activate ipyscore
micromamba install -c conda-forge python nodejs
pip install jupyterlab
npm install
```
Install the Python package and build the TypeScript package.
```bash
pip install -e .
node_modules/.bin/esbuild --bundle --format=esm --outdir=ipyscore/static src/index.ts
```