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",