mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2026-01-06 03:22:43 +01:00
init commit
This commit is contained in:
15
make.sh
Executable file
15
make.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
rm -rf doc/build
|
||||
rm dist/*
|
||||
python3 setup.py clean
|
||||
python3 setup.py build
|
||||
python3 setup.py bdist_wheel
|
||||
pip3 uninstall -y pytiled_parser
|
||||
for file in dist/*
|
||||
do
|
||||
pip3 install $file
|
||||
done
|
||||
# sphinx-build -b html doc doc/build/html
|
||||
coverage run --source arcade setup.py test
|
||||
coverage report -m
|
||||
Reference in New Issue
Block a user