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:
334 bytes
|
Line | |
---|
1 | .PHONY: clean build install deploy test.sql |
---|
2 | |
---|
3 | clean: |
---|
4 | rm dist/* || echo '' |
---|
5 | python3 setup.py clean |
---|
6 | build: clean |
---|
7 | python3 setup.py build |
---|
8 | install: build |
---|
9 | python3 setup.py install |
---|
10 | test.sql: install |
---|
11 | python3 -m unittest tests.sql |
---|
12 | deploy: build |
---|
13 | #http://guide.python-distribute.org/creation.html |
---|
14 | python3 setup.py sdist |
---|
15 | twine upload dist/* |
---|
Note: See
TracBrowser
for help on using the repository browser.