3
# released into the public domain: http://creativecommons.org/licenses/publicdomain/
5
from distutils.core import setup
9
setup( name="ooo-thumbnailer", # this should start with a lowercase letter
10
#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>",
15
url="", # home page for end-users
17
data_files=[('/usr/share/gconf/schemas', ['ooo-thumbnailer.schemas'])],
18
scripts=["ooo-thumbnailer"], # the script that should be run and installed in /usr/bin
19
classifiers=["Development Status :: 1 - Planning", "License :: OSI Approved :: BSD License", "Operating System :: POSIX :: Linux"],
20
# a bunch of optional tags, a list of classifiers can be found at http://pypi.python.org/pypi?:action=list_classifiers
21
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.""")
24
if __name__ == "__main__":