From fe532d14f7d8dfef064593099885800a776dee82 Mon Sep 17 00:00:00 2001 From: Pete Shadbolt Date: Mon, 25 Jul 2016 07:16:39 +0100 Subject: [PATCH] Well that wasn't any fun --- run.sh | 8 -------- setup.py | 3 +-- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100755 run.sh diff --git a/run.sh b/run.sh deleted file mode 100755 index e8094af..0000000 --- a/run.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -rm -r abp.egg-info -rm -r build -rm -r dist - -python setup.py build sdist - -tar -tvf dist/abp-0.4.5.tar.gz diff --git a/setup.py b/setup.py index 5e20892..0a263dc 100755 --- a/setup.py +++ b/setup.py @@ -3,11 +3,10 @@ from glob import glob from os import path STATIC = glob("abp/static/*.*")+glob("abp/static/img/*.*")+glob("abp/static/scripts/*.*") -print STATIC setup( name = "abp", - version = "0.4.6", + version = "0.4.7", packages = ["abp", "abp.static"], test_suite = "tests", author = "Pete Shadbolt",