summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSimeon Simeonov2023-01-12 22:36:04 +0100
committerSimeon Simeonov2023-01-12 22:36:04 +0100
commite62d7c5ea3bc014123cf6f78e5345c588cd4f068 (patch)
tree17ea5bbbe613a320f4ce91dd019e497a8bd90565 /Makefile
parentdc1baaa1b1079516a7e2aead21f9af847e64494d (diff)
Make the project PEP517 compatible
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