Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Users/james/travis #143

Merged
merged 12 commits into from
Aug 26, 2020
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
language: python
python:
- "3.6" # current default Python on Travis CI
- "3.7"
- "3.8"
jobs:
allow_failures:
- python: "3.8-dev" # 3.8 development branch
- python: "nightly" # nightly build
# command to install dependencies
before_install:
- python --version
- pip install codecov
install:
- pip install .
# command to run tests
script:
- pytest
after_success:
- codecov
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
[build-image]: https://travis-ci.com/JamesOwers/midi_degradation_toolkit.svg?branch=master
[build-url]: https://travis-ci.com/JamesOwers/midi_degradation_toolkit
[coverage-image]: https://codecov.io/gh/JamesOwers/midi_degradation_toolkit/branch/master/graph/badge.svg
[coverage-url]: https://codecov.io/github/JamesOwers/midi_degradation_toolkit?branch=master
<!-- [docs-image]: https://readthedocs.org/projects/midi_degradation_toolkit/badge/?version=latest
[docs-url]: https://midi_degradation_toolkit.readthedocs.io/en/latest/?badge=latest
[pypi-image]: https://badge.fury.io/py/midi_degradation_toolkit.svg
[pypi-url]: https://pypi.python.org/pypi/midi_degradation_toolkit -->


# mdtk - The MIDI Degradation Toolkit

[![Build Status][build-image]][build-url]
[![Code Coverage][coverage-image]][coverage-url]
<!-- [![PyPI Version][pypi-image]][pypi-url] -->
<!-- [![Docs Status][docs-image]][docs-url] -->

Tools to generate datasets of Altered and Corrupted MIDI Excerpts -`ACME`
datasets.

Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,8 @@ install_requires =
torch
tqdm
python_requires =
~=3.7
~=3.6
packages = find:
dependency_links =
https://github.com/craffel/pretty-midi/tarball/master#egg=0.2.8'

[options.extras_require]
# please keep package lists sorted
Expand Down