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 |
---|
2 | clean: |
---|
3 | rm dist/* | echo '' |
---|
4 | find . -name '*.pyc' -delete |
---|
5 | find . -name '*~' -delete |
---|
6 | find . -name '#*' -delete |
---|
7 | python3 setup.py clean |
---|
8 | build: clean |
---|
9 | python3 setup.py clean |
---|
10 | python3 setup.py build |
---|
11 | install: build |
---|
12 | python3 setup.py install |
---|
13 | test: build |
---|
14 | python -m unittest tests |
---|
15 | deploy: 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.