~flimm/ooo-thumbnailer/releases

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: David D Lowe
  • Date: 2011-11-12 01:11:57 UTC
  • mfrom: (1.1.33 trunk)
  • Revision ID: daviddlowe.flimm@gmail.com-20111112011157-hjtdnjg7riygpuot
0.5 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python2.6
2
 
# 2009-2010 David D Lowe
 
2
# 2009-2011 David D Lowe
3
3
# To the extent possible under law, David D. Lowe has waived all copyright and related or neighboring rights to this file.
4
4
# License: http://creativecommons.org/publicdomain/zero/1.0/
5
5
 
11
11
def main():
12
12
        
13
13
    setup( name="ooo-thumbnailer",
14
 
    version="0.4.1",
15
 
    description="Thumbnailer for OpenOffice.org and Microsoft Office documents, spreadsheets, presentations and drawings.", # short
 
14
    version="0.5",
 
15
    description="Thumbnailer for LibreOffice, OpenOffice.org and Microsoft Office documents, spreadsheets, presentations and drawings.", # short
16
16
    author="David D Lowe",
17
17
    author_email="daviddlowe.flimm@gmail.com",
18
18
    url="", # home page for end-users
19
19
    license="GPL v3",
20
 
    data_files=[('/usr/share/gconf/schemas', ['ooo-thumbnailer.schemas', 'gsf-office-thumbnailer.schemas'])],
 
20
    data_files=[
 
21
        ('/usr/share/gconf/schemas', ['ooo-thumbnailer.schemas', 'gsf-office-thumbnailer.schemas']),
 
22
        ('/usr/share/thumbnailers', ['ooo-thumbnailer.thumbnailer']),
 
23
    ],
21
24
    scripts=["ooo-thumbnailer", "ooo-thumbnailer-config"],
22
25
    classifiers=["Development Status :: 5 - Production/Stable", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: POSIX :: Linux"],
23
26
        # a bunch of optional tags, a list of classifiers can be found at http://pypi.python.org/pypi?:action=list_classifiers
24
 
    long_description="""ooo-thumbnailer is an OpenOffice.org and Microsoft Office document thumbnailer that can be used by file
 
27
    long_description="""ooo-thumbnailer is a LibreOffice, OpenOffice.org and Microsoft Office document thumbnailer that can be used by file
25
28
managers to create thumbnails for your documents, spreadsheets, presentations and drawings.""",
26
29
    cmdclass={"install_data":install_data})
27
30