~flimm/ooo-thumbnailer/releases

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: David D Lowe
  • Date: 2009-03-11 20:35:16 UTC
  • Revision ID: daviddlowe.flimm@gmail.com-20090311203516-w81fo152a131hyet
Inital release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# 2009 David D Lowe
 
3
# released into the public domain: http://creativecommons.org/licenses/publicdomain/
 
4
 
 
5
from distutils.core import setup
 
6
 
 
7
def main():
 
8
        
 
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>",
 
14
    author_email="",
 
15
    url="", # home page for end-users
 
16
    license="GPL v2",
 
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.""")
 
23
 
 
24
if __name__ == "__main__":
 
25
    main()