diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f1006b5 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +test: + pytest + +sdist : + python setup.py sdist + +upload: + twine upload dist/* + +clean: + rm dist/* + +dist: sdist upload clean + diff --git a/requirements_dev.txt b/requirements_dev.txt index e9ed61a..e844f99 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -6,4 +6,7 @@ sphinx # Documentation sphinx-autobuild -sphinx_book_theme \ No newline at end of file +sphinx_book_theme + +# Packaging +twine \ No newline at end of file