fixed paths & project information in setup.py
authorEugene Gagarin <mosfet07@ya.ru>
Wed, 25 Feb 2009 10:14:38 +0000 (13:14 +0300)
committerEugene Gagarin <mosfet07@ya.ru>
Wed, 25 Feb 2009 10:14:38 +0000 (13:14 +0300)
README
setup.py

diff --git a/README b/README
index 47a3042..3f5bcc5 100644 (file)
--- 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:
index 79782f5..b50d76e 100755 (executable)
--- 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'])
+                   ]
+     )