Conversion_Kitchen_Code/kitchen_counter/conversion/translation/indictrans/Makefile

11 lines
316 B
Makefile
Executable File

travis:
[ ! -d .testrepository ] || \
find .testrepository -name "times.dbm*" -delete
python setup.py build_ext -i
python setup.py test --coverage \
--coverage-package-name=indictrans
flake8 --max-complexity 10 indictrans
clean:
find . -iname "*.pyc" -exec rm -vf {} \;
find . -iname "__pycache__" -delete