diff options
Diffstat (limited to 'python/Makefile.am')
-rw-r--r-- | python/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/python/Makefile.am b/python/Makefile.am new file mode 100644 index 0000000..dd76d62 --- /dev/null +++ b/python/Makefile.am @@ -0,0 +1,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/* |