NonSci output option and InkScape extension added by Aleon

This commit is contained in:
Marcus Lindvall 2023-01-31 11:02:40 +01:00
parent 0609c59676
commit a124f9f415
6 changed files with 269 additions and 12 deletions

View file

@ -1,7 +1,7 @@
all: clean install
install:
python setup.py install
python3 setup.py install
clean:
rm -rf build
@ -14,21 +14,21 @@ clean:
find . -name "*__pycache__" -type d -prune -exec rm -rf {} \;
publish: clean
python setup.py register
python setup.py sdist upload
python3 setup.py register
python3 setup.py sdist upload
check: test flake8
test:
python test_scour.py
python3 test_scour.py
test_version:
PYTHONPATH=. python -m scour.scour --version
PYTHONPATH=. python3 -m scour.scour --version
test_help:
PYTHONPATH=. python -m scour.scour --help
PYTHONPATH=. python3 -m scour.scour --help
flake8:
flake8 --max-line-length=119