MANIFEST.in
author Reimar Bauer <rb.proj AT googlemail DOT com>
Mon, 19 Jan 2009 01:20:04 +0100
changeset 4247 c76d50dac855
parent 3439 b9879146620d
permissions -rw-r--r--
text_html_text_moin_wiki: bug fix for GuiEditorBreaksIndentedTable
     1 # MoinMoin - Distutils distribution files
     2 #
     3 # Copyright (c) 2001, 2002 by Jürgen Hermann <jh@web.de>
     4 # All rights reserved, see COPYING for details.
     5 
     6 # additional files not known by setup.py
     7 include README MANIFEST.in setup.cfg moin.spec
     8 include wikiserver.py wikiserverconfig.py wikiserverlogging.conf wikiconfig.py
     9 
    10 # documentation and licenses
    11 recursive-include docs *
    12 
    13 # include stuff for translators
    14 recursive-include   MoinMoin/i18n *
    15 
    16 # contrib stuff
    17 recursive-include   contrib *
    18 
    19 # tests stuff
    20 recursive-include   tests *
    21 global-include */_tests/*
    22 
    23 # "wiki" directory
    24 recursive-include   wiki *
    25 
    26 # omit revision control, python bytecode
    27 global-exclude *.pyc
    28 global-exclude *.pyo
    29 global-exclude */CVS/*
    30 global-exclude */.cvsignore
    31 
    32 # we distribute a uncompressed version, no need for that:
    33 global-exclude underlay.tar
    34 global-exclude README.underlay
    35