mirror of
https://github.com/daknuett/licor
synced 2024-07-20 12:15:24 +00:00
18 lines
207 B
Makefile
18 lines
207 B
Makefile
|
|
||
|
clean:
|
||
|
python3 setup.py clean
|
||
|
sdist: clean
|
||
|
python3 setup.py sdist
|
||
|
|
||
|
bdist_wheel: clean
|
||
|
python3 setup.py bdist_wheel
|
||
|
|
||
|
install:
|
||
|
python3 setup.py install
|
||
|
|
||
|
upload: sdist bdist_wheel
|
||
|
twine upload dist/*
|
||
|
|
||
|
|
||
|
|