~flimm/ooo-thumbnailer/releases

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: David D Lowe
  • Date: 2010-05-19 18:39:30 UTC
  • mfrom: (1.1.6 bash-ooo-thumbnailer)
  • Revision ID: daviddlowe.flimm@gmail.com-20100519183930-4cncwaf233gsakvx
0.2 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
# 2009 David D Lowe
3
 
# released into the public domain: http://creativecommons.org/licenses/publicdomain/
 
3
# To the extent possible under law, David D. Lowe has waived all copyright and related or neighboring rights to this file.
 
4
# License: http://creativecommons.org/publicdomain/zero/1.0/
4
5
 
5
6
from distutils.core import setup
6
7
 
8
9
        
9
10
    setup( name="ooo-thumbnailer", # this should start with a lowercase letter 
10
11
        #so that it can be used as a debian package name later on
11
 
    version="0.1", # string, version of your program, not python version
12
 
    description="OpenOffice.org thumbnailer for OpenOffice.org documents", # short
13
 
    author="David D Lowe <daviddlowe.flimm@gmail.com>",
14
 
    author_email="",
 
12
    version="0.2", # string, version of your program, not python version
 
13
    description="OpenOffice.org thumbnailer for OpenOffice.org documents, spreadsheets, presentations and drawings.", # short
 
14
    author="David D Lowe",
 
15
    author_email="DavidDLowe.flimm@gmail.com",
15
16
    url="", # home page for end-users
16
17
    license="GPL v2",
17
18
    data_files=[('/usr/share/gconf/schemas', ['ooo-thumbnailer.schemas'])],
19
20
    classifiers=["Development Status :: 1 - Planning", "License :: OSI Approved :: BSD License", "Operating System :: POSIX :: Linux"],
20
21
        # a bunch of optional tags, a list of classifiers can be found at http://pypi.python.org/pypi?:action=list_classifiers
21
22
    long_description="""ooo-thumbnailer is a lightweight OpenOffice.org document thumbnailer that can be used by file
22
 
managers to create thumbnails for your documents.""")
 
23
managers to create thumbnails for your documents, spreadsheets, presentations and drawings.""")
23
24
 
24
25
if __name__ == "__main__":
25
26
    main()