You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.4 KiB
63 lines
1.4 KiB
.PHONY: doc, runGittk, runDemo, build, deploy, buildTest, deployTest, |
|
|
|
.venv: |
|
python3 -m venv .venv |
|
. .venv/bin/activate ; \ |
|
pip install -r docs/requirements.txt |
|
# Regen requirements; |
|
# pip freeze > docs/requirements.txt |
|
|
|
|
|
doc: .venv |
|
# old doc gen, using pdoc3 ; \ |
|
# . .venv/bin/activate ; \ |
|
# rm -rf docs/html ; \ |
|
# pdoc --html TermTk -o docs/html ; \ |
|
. .venv/bin/activate ; \ |
|
rm -rf docs/html ; \ |
|
rm -rf docs/source/autogen.* ; \ |
|
# sphinx-apidoc -o docs/source/TermTk/ -e TermTk/ ; \ |
|
make -C docs/ clean ; \ |
|
make -C docs/ html ; |
|
|
|
runGittk: .venv |
|
. .venv/bin/activate |
|
demo/gittk.py -f |
|
|
|
runDemo: .venv |
|
. .venv/bin/activate |
|
demo/demo.py -f |
|
|
|
build: .venv |
|
. .venv/bin/activate |
|
rm -rf dist |
|
tools/prepareBuild.sh release |
|
python3 -m build |
|
|
|
buildTest: .venv |
|
. .venv/bin/activate |
|
rm -rf dist |
|
tools/prepareBuild.sh test |
|
python3 -m build |
|
|
|
deployDoc: |
|
git checkout gh-pages |
|
rm -rf *.inv *.html *.js _* autogen.* tutorial |
|
cp -a docs/build/html/* . |
|
find *.html *.inv *.js autogen.TermTk _* tutorial | xargs git add |
|
git commit -m "Doc Updated" |
|
git push origin gh-pages |
|
git checkout main |
|
|
|
deployTest: .venv |
|
. .venv/bin/activate |
|
python3 -m twine upload --repository testpypi dist/* --verbose |
|
|
|
deploy: .venv |
|
. .venv/bin/activate |
|
python3 -m twine upload dist/* |
|
|
|
test: .venv |
|
. .venv/bin/activate |
|
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude .venv,build,tmp |
|
pytest demo/demo.py
|
|
|