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