diff --git a/Makefile b/Makefile index c2c0675..58d12ae 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ dist: - python -m build + python -m build test: - twine upload --repository testpypi /dist + twine upload --repository testpypi dist/* publish: - twine upload --repository pypi /dist + twine upload --repository pypi dist/* diff --git a/setup.py b/setup.py index cc74d35..e5663c9 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ if __name__ == "__main__": setup( name="XtendR", - version="0.0.7", + version="0.0.8", packages=find_packages(), install_requires=[], author="Jan Lerking",