mirror of
https://github.com/KevinMidboe/tableprint.git
synced 2025-10-29 18:00:16 +00:00
14 lines
187 B
Makefile
14 lines
187 B
Makefile
all:
|
|
python setup.py install
|
|
|
|
develop:
|
|
python setup.py develop
|
|
|
|
upload:
|
|
python setup.py sdist bdist_wininst upload
|
|
|
|
clean:
|
|
rm -rf tableprint.egg-info
|
|
rm -f *.pyc
|
|
rm -rf __pycache__
|