blob: 9473a1ca65b8835430e870b4c01e3bdc4b5930cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
install: clean
python setup.py install
install_bundle: clean
python setup.py install --bundled
get_amalgamation:
scripts/get_latest_amalgamation.sh amalgamation_latest
upload:
python setup.py sdist upload -r pypi
clean:
rm -rf build dist
|