From be4883d51b95f14f77f17ba2064cb271d448f2b6 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Mon, 30 May 2022 21:08:49 +0200 Subject: [PATCH] Simple make file for building and upload dist --- Makefile | 15 +++++++++++++++ torrentSearch/__version__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..794b7ea --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.PHONY: clean +binaries=dist build + +dist: + python3 setup.py sdist + +build: + python3 setup.py build + +upload: clean dist + twine upload dist/* + +clean: + rm -rf $(binaries) + diff --git a/torrentSearch/__version__.py b/torrentSearch/__version__.py index c5d89af..d5d5d50 100644 --- a/torrentSearch/__version__.py +++ b/torrentSearch/__version__.py @@ -1,2 +1,2 @@ -__version__ = '0.3' +__version__ = '0.3.1'