2016-03-20 05:18:14 +00:00
|
|
|
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
|
2017-10-16 22:30:24 +00:00
|
|
|
python3.6 -m tests.test_crontab
|
2016-03-20 05:18:14 +00:00
|
|
|
|
|
|
|
upload:
|
2018-04-13 04:20:59 +00:00
|
|
|
python3.6 setup.py sdist upload
|