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:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ main ]
|
branches:
|
||||||
|
- main
|
||||||
|
paths-ignore:
|
||||||
|
- '**/README.md'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main ]
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
25
README.md
25
README.md
|
@ -6,18 +6,29 @@
|
||||||
|
|
||||||
|
|
||||||
# pyebur128
|
# 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
|
## 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 pyebur128
|
||||||
pip install dist/pyebur128*.whl
|
```
|
||||||
|
|
||||||
|
### From Source
|
||||||
|
|
||||||
|
```
|
||||||
|
git clone --recurse-submodules https://github.com/jodhus/pyebur128
|
||||||
|
cd pyebur128
|
||||||
|
pip install .
|
||||||
```
|
```
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
1. Make a better README.md
|
* Working on getting official documentation written/uploaded. In the meantime, all definitions are documented in within their docstrings.
|
||||||
2. Create the docs and upload them
|
|
||||||
3. Publish to PyPI
|
|
Loading…
Reference in a new issue