parse_crontab/Makefile
Josiah Carlson fd7a7192f9 Fixes/adds timezone support to "just work"
Explicitly starts testing against Python 2.6, 2.7, 3.3, 3.4, and 3.5
2016-03-19 22:19:58 -07:00

18 lines
339 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
upload:
python setup.py sdist upload