Skip to content

Commit

Permalink
updated readme; added distribution script
Browse files Browse the repository at this point in the history
  • Loading branch information
DataGreed committed Apr 5, 2022
1 parent dade054 commit 2eee755
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,23 @@ pip install polyendtracker-midi-export

## Usage

### Converting an entire Tracker project to MIDI

Just point the script to your project's directory:

```sh
$ polymidiexport ./my-tracker-project/
```

Alternatively point it to a project file:

```sh
$ polymidiexport ./my-tracker-project/project-file.mt
```


### Converting an individual Tracker pattern file to MIDI

Converting Polyend Tracker `*.mtp` pattern file to midi (pattern files are nested in project folders under `patterns`):

```sh
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
requirements = fh.read()
setup(
name = 'polyendtracker-midi-export',
version = '0.2.1',
version = '0.2.2',
author = 'Alexey Strelkov',
author_email = '[email protected]',
license = 'MIT License',
Expand Down
4 changes: 4 additions & 0 deletions upload_to_pypi.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
python3 -m pip install --user --upgrade setuptools wheel
python3 setup.py sdist bdist_wheel
python3 -m pip install --user --upgrade twine
python3 -m twine upload --repository --verbose pypi dist/*

0 comments on commit 2eee755

Please sign in to comment.