added proper about dlg, and fixed bug refreshing quotes view
[stockthis] / setup.py
index 4050da8..aa451af 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 # MA  02110-1301, USA.
 #
 
@@ -19,24 +19,24 @@ from distutils.core import setup
 
 # files to install
 inst_desktop = ['stockthis.desktop']
-inst_py = ['stockthis.py', 'marketdata.py']
-pixmaps = ['pixmaps/loading.gif', 'pixmaps/stockthis.png']
-inst_dbus = ['stockthis.service']
+inst_py = ['stockthis.py', 'marketdata.py', 'settings.py']
+pixmaps = ['pixmaps/stockthis.png']
+#inst_dbus = ['stockthis.service']
 inst_icon = ['stockthis.png']
 inst_icon_sca = ['pixmaps/stockthis.png']
 
 data_files = [
   ('share/applications/hildon', inst_desktop),
-  ('share/stockthis',   inst_py), 
+  ('share/stockthis',   inst_py),
   ('share/stockthis/pixmaps',   pixmaps),
   ('share/icons/hicolor/26x26/hildon/',   inst_icon),
   ('share/icons/hicolor/scalable/hildon/',   inst_icon_sca),
-  ('share/dbus-1/services',   inst_dbus),
+  #('share/dbus-1/services',   inst_dbus),
 ]
 
 setup(
   name         = 'stockthis',
-  version      = '0.1',
+  version      = '0.3',
   description  = 'Stocks application',
   author       = 'Daniel Martin Yerga',
   author_email = 'dyerga@gmail.com',