forked from pnnl/pecblocks
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild_package.bat
More file actions
20 lines (17 loc) · 776 Bytes
/
build_package.bat
File metadata and controls
20 lines (17 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
rem copy selected Python files to the end-user example directory, build a lightweight package
cd docs
call make clean
cd ..
xcopy /d /y examples\hwpv\loss_plot.py examples\training
xcopy /d /y examples\hwpv\pv3_export.py examples\training
xcopy /d /y examples\hwpv\pv3_metrics.py examples\training
xcopy /d /y examples\hwpv\pv3_sigma.py examples\training
xcopy /d /y examples\hwpv\pv3_test.py examples\training
xcopy /d /y examples\hwpv\pv3_training.py examples\training
xcopy /d /y examples\hwpv\train.bat examples\training
xcopy /d /y examples\hwpv\train.sh examples\training
xcopy /d /y examples\hwpv\export.bat examples\training
xcopy /d /y examples\hwpv\export.sh examples\training
rd /s /q dist
python -m build
twine check dist/*