Skip to content

Commit

Permalink
Add build script
Browse files Browse the repository at this point in the history
  • Loading branch information
shirowanisan committed Feb 27, 2022
1 parent 803fd7e commit 535cebf
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions script.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
python -m venv venv
.\venv\Scripts\activate
pip list
pip install --upgrade pip setuptools
pip install --no-deps -r requirements-coeiroink-no-deps.txt
pip install -r requirements-coeiroink.txt
pip install -r requirements-dev.in
python generate_licenses.py > licenses.json
pip install pyinstaller
pyinstaller run.py
mkdir dist/run/espnet
cp venv/Lib/site-packages/espnet/version.txt dist/run/espnet/
mkdir dist/run/librosa/util/example_data
cp venv/Lib/site-packages/librosa/util/example_data/registry.txt dist/run/librosa/util/example_data/
cp venv/Lib/site-packages/librosa/util/example_data/index.json dist/run/librosa/util/example_data/

0 comments on commit 535cebf

Please sign in to comment.