diff options
Diffstat (limited to 'python/Makefile.am')
-rw-r--r-- | python/Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/python/Makefile.am b/python/Makefile.am new file mode 100644 index 0000000..464d4fa --- /dev/null +++ b/python/Makefile.am @@ -0,0 +1,13 @@ +EXTRA_DIST = \ + libknot/__init__.py.in \ + libknot/control.py \ + setup.py.in + +clean-local: + -rm -rf dist *.egg-info + +dist: clean-local + python3 setup.py sdist + +upload: + twine upload dist/* |