Update README and ignore it for testing
This commit is contained in:
parent
1adf6d94a7
commit
bf5e76cba1
2 changed files with 24 additions and 9 deletions
8
.github/workflows/run-tests.yml
vendored
8
.github/workflows/run-tests.yml
vendored
|
@ -4,9 +4,13 @@ name: Run tests
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
branches:
|
||||
- main
|
||||
paths-ignore:
|
||||
- '**/README.md'
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
25
README.md
25
README.md
|
@ -6,18 +6,29 @@
|
|||
|
||||
|
||||
# pyebur128
|
||||
A Cython implementation of the libeur128 library for audio loudness in media files.
|
||||
A Cython implementation of the [libebur128](https://github.com/jiixyj/libebur128) library for audio loudness in media files.
|
||||
|
||||
## Requirements
|
||||
|
||||
* Operating Systems: Linux, macOS, or Windows
|
||||
* Python: 3.6+
|
||||
* Dependencies: None!
|
||||
|
||||
## Installation
|
||||
|
||||
Working on getting wheels created/published, but for now you can easily run the following to get going:
|
||||
### PyPI
|
||||
|
||||
```
|
||||
python3 -m build
|
||||
pip install dist/pyebur128*.whl
|
||||
pip install pyebur128
|
||||
```
|
||||
|
||||
### From Source
|
||||
|
||||
```
|
||||
git clone --recurse-submodules https://github.com/jodhus/pyebur128
|
||||
cd pyebur128
|
||||
pip install .
|
||||
```
|
||||
|
||||
## TODO
|
||||
1. Make a better README.md
|
||||
2. Create the docs and upload them
|
||||
3. Publish to PyPI
|
||||
* Working on getting official documentation written/uploaded. In the meantime, all definitions are documented in within their docstrings.
|
Loading…
Reference in a new issue