diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c2c0675 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +dist: + python -m build + +test: + twine upload --repository testpypi /dist + +publish: + twine upload --repository pypi /dist diff --git a/setup.py b/setup.py index 45f9241..cc74d35 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ if __name__ == "__main__": setup( name="XtendR", - version="0.0.6", + version="0.0.7", packages=find_packages(), install_requires=[], author="Jan Lerking",