source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/gluon/packages/yatl/Makefile

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 424 bytes
Line 
1.PHONY: clean build install test deploy
2clean:
3        rm dist/* | echo ''
4        find . -name '*.pyc' -delete
5        find . -name '*~' -delete
6        find . -name '#*' -delete
7        python3 setup.py clean
8build:  clean
9        python3 setup.py clean
10        python3 setup.py build
11install: build
12        python3 setup.py install
13test: build
14        python -m unittest tests
15deploy: test
16        #http://guide.python-distribute.org/creation.html
17        python setup.py sdist
18        twine upload dist/*
Note: See TracBrowser for help on using the repository browser.