parse_crontab/Makefile
2018-04-12 21:20:59 -07:00

19 lines
375 B
Makefile

SHELL=/bin/bash
clean:
-rm -f *.pyc crontab/*.pyc README.html MANIFEST
-rm -rf build dist
install:
python setup.py install
test:
python2.6 -m tests.test_crontab
python2.7 -m tests.test_crontab
python3.3 -m tests.test_crontab
python3.4 -m tests.test_crontab
python3.5 -m tests.test_crontab
python3.6 -m tests.test_crontab
upload:
python3.6 setup.py sdist upload