From 17f3505ef83ee362ad57166bce77174f974ee740 Mon Sep 17 00:00:00 2001 From: Eugene Gagarin Date: Wed, 25 Feb 2009 13:14:38 +0300 Subject: [PATCH] fixed paths & project information in setup.py --- README | 2 +- setup.py | 25 ++++++++++++++----------- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/README b/README index 47a3042..3f5bcc5 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -FindIT is a programm for find some information on computer. +FindIT is a program for find some information on computer. Dependencies: To use it on Linux/Unix and X11 you'll need the following: diff --git a/setup.py b/setup.py index 79782f5..b50d76e 100755 --- a/setup.py +++ b/setup.py @@ -5,14 +5,17 @@ from distutils.core import setup setup(name='findit', - version='0.1', - scripts=['findit'], - data_files = [ - ('share/icons/hicolor/26x26/apps/findit.png', ['./icons/findit_icon_26x26.png']), - ('share/icons/hicolor/64x64/apps/findit.png', ['./icons/findit_icon_64x64.png']), - ('share/applications/hildon/', ['findit.desktop']), - ('share/findit/', ['findit.py']), - ('share/locale/ru/LC_MESSAGES/', ['./ru/LC_MESSAGES/findit.mo']), - ('share/locale/ru_RU/LC_MESSAGES/', ['./ru/LC_MESSAGES/findit.mo']) - ] - ) + version='0.1', + scripts=['./data/findit'], + license='GPLv3', + description='FindIT is a program for find some information on computer', + platform='all', + data_files = [ + ('share/icons/hicolor/26x26/apps/', ['./data/icons/26x26/findit.png']), + ('share/icons/hicolor/64x64/apps/', ['./data/icons/64x64/findit.png']), + ('share/applications/hildon/', ['./data/findit.desktop']), + ('share/findit/', ['./src/findit.py']), + ('share/locale/ru/LC_MESSAGES/', ['./po/ru/findit.mo']), + ('share/locale/ru_RU/LC_MESSAGES/', ['./po/ru/findit.mo']) + ] + ) -- 1.7.9.5