blob: dd76d62e1dc0cc0be7e569c8daa091e1653e1223 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
EXTRA_DIST = \
libknot/__init__.py.in \
libknot/control.py \
setup.py.in \
stats_http.py \
stats_influxdb.py
clean-local:
-rm -rf dist *.egg-info
dist: clean-local
python3 setup.py sdist
upload:
twine upload dist/*
|