summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 852f221..e9fb990 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
1package: COPYING ngus/__init__.py ngus/__main__.py LICENSE README.md setup.py 1package: COPYING src/ngus/__init__.py src/ngus/__main__.py LICENSE README.md setup.py pyproject.toml setup.cfg
2 python setup.py sdist bdist_wheel 2 python -m build
3 3
4upload: dist/* 4upload: dist/*
5 python -m twine upload dist/* 5 python -m twine upload dist/*
@@ -8,4 +8,4 @@ upload-test: dist/*
8 python -m twine upload --repository testpypi dist/* 8 python -m twine upload --repository testpypi dist/*
9 9
10clean: 10clean:
11 rm -rf build dist ngus/__pycache__ ngus.egg-info 11 rm -rf dist src/ngus/__pycache__ src/ngus.egg-info