X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=setup.py;h=0782d266feae3a8abd09a47af8b1ffe57b48fae4;hb=01207c5cdcb59fa55c1439293da682ee4f380fb9;hp=94be7b823f2832353c94402162fc76079d9a7393;hpb=e1a67e30d75eb39f805fb72764af2549e5a2c9c9;p=jamaendo diff --git a/setup.py b/setup.py index 94be7b8..0782d26 100644 --- a/setup.py +++ b/setup.py @@ -26,10 +26,8 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -from setuptools import setup, find_packages +from distutils.core import setup from glob import glob -import os -import sys data_files = [ ('/opt/jamaendo', glob('data/icon_*.png') + ['data/bg.png', 'data/album.png']), @@ -45,15 +43,13 @@ data_files = [ # modir = os.path.dirname(mofile).replace('data', 'share') # translation_files.append((modir, [mofile])) -import sys setup( name = "jamaendo", - version = '0.1', + version = '0.2', author = "Kristoffer Gronlund", author_email = "kristoffer.gronlund@purplescout.se", url = "http://jamaendo.garage.maemo.org/", packages = ['jamaendo', 'jamaui'], - zip_safe=False, scripts = ['scripts/jamaendo'], data_files = data_files# + translation_files, )