~ubuntu-branches/ubuntu/utopic/postr/utopic

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Ross Burton
  • Date: 2007-09-23 15:38:03 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070923153803-zog9v8f03wc6xhee
Tags: 0.9-1
* New upstream release
  - Handle images with EXIF tags better (Closes: #441010)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
from distutils.core import setup
4
4
from glob import glob
 
5
from src.version import __version__
5
6
 
6
7
setup(name='Postr',
7
 
      version='0.7',
 
8
      version=__version__,
8
9
      description='Flickr Uploader',
9
10
      author='Ross Burton',
10
11
      author_email='ross@burtonini.com',
16
17
      package_data={'postr': ['postr.glade']},
17
18
      data_files=[('share/applications', ['data/postr.desktop']),
18
19
                  ('lib/nautilus/extensions-1.0/python', ['nautilus/postrExtension.py']),
19
 
                  ('share/icons/hicolor/16x16/apps', glob('data/16x16/*')),
20
 
                  ('share/icons/hicolor/22x22/apps', glob('data/22x22/*')),
21
 
                  ('share/icons/hicolor/32x32/apps', glob('data/32x32/*')),
22
 
                  ('share/icons/hicolor/scalable/apps', glob('data/scalable/*')),
 
20
                  ('share/icons/hicolor/16x16/apps', glob('data/16x16/*.png')),
 
21
                  ('share/icons/hicolor/22x22/apps', glob('data/22x22/*.png')),
 
22
                  ('share/icons/hicolor/24x24/apps', glob('data/24x24/*.png')),
 
23
                  ('share/icons/hicolor/32x32/apps', glob('data/32x32/*.png')),
 
24
                  ('share/icons/hicolor/scalable/apps', glob('data/scalable/*.svg')),
23
25
                  ],
24
26
      
25
27
      )