root/branches/stable-1.7/setup.py

Revision 88 (by mbutscher, 08/26/06 13:45:23)

In (1.7-stable):

* Internal: AboutDialog? moved from AboutDialog?.py

into AdditionalDialogs?.py
* Internal: OptionsDialog? moved from
AdditionalDialogs?.py to own OptionsDialog?.py
* Better handling of non Western-European languages
on Win 98/ME
* Bug fixed: Wiki word aliases not shown as links on
HTML export
* Bug fixed: Wrong URL creation mode when
releasing/pressing SHIFT or CTRL during drag&drop
operation.


In mbutscher/work:

* New database format! After updating a wiki it
won't be readable anymore for older versions of
WikidPad.
* New position for config. files on Windows inside
"Application Data\WikidPad" directory
* Possibility to set size and alignment for image
URLs (by appending ">" and some code on it).
* Cursor and scroll position are now saved between
sessions.
* Functional pages for "camelcase blacklist". Words
on this list are not shown as wiki links.
* Menu functions "Show Tree Control", "Show Toolbar"
and "Stay on Top" moved to "View" menu.
* Updating of wiki databases to new versions is now
done only after user request.

* Better handling of non Western-European languages
on Win 98/ME
* Bug fixed: Wiki word aliases not shown as links on
HTML export
* Bug fixed: Wrong URL creation mode when
releasing/pressing SHIFT or CTRL during drag&drop
operation.

* Internal: AboutDialog? moved from AboutDialog?.py
into AdditionalDialogs?.py
* Internal: OptionsDialog? moved from
AdditionalDialogs?.py to own OptionsDialog?.py
* Internal: One icon cache for whole process, not
one for each main frame

# setup.py
from distutils.core import setup
import os
from glob import glob
import py2exe
from py2exe.build_exe import Target


wikidpad = Target(
    # used for the versioninfo resource
    version = '1.7',
    name = "WikidPad",
    copyright = "(C) 2005-2006 Jason Horman, Michael Butscher, Gerhard Reitmayr",
    description = "Single user wiki notepad",
    comments="",

    # what to build
    script = 'WikidPad.py',
    icon_resources = [(0, 'icons/pwiki.ico')])


setup(name='WikidPad',
      version='1.7rc',
      author='Michael Butscher',
      author_email='mbutscher@gmx.de',
      url='http://www.mbutscher.nextdesigns.net/software.html',
      ## scripts=['WikidPad.py'],
      windows=[wikidpad],
      package_dir = {'': 'lib'},
      packages=['pwiki', 'pwiki.wikidata', 'pwiki.wikidata.compact_sqlite',
                'pwiki.wikidata.original_gadfly',
                'pwiki.wikidata.original_sqlite'],
      # py_modules=['encodings.utf_8', 'encodings.latin_1'],
      data_files=[('icons', glob(os.path.join('icons', '*.*'))),
#                   ('lib', glob('sql_mar.*')),
                  ('extensions', glob('extensions/*.*')),
                  ('', ['sqlite3.dll', 'WikidPad.xrc', 'readme_Wic.txt', "gadfly.zip"]),
                  ('WikidPadHelp', glob(os.path.join('WikidPadHelpOG-static17', "*.wiki"))),
                  (os.path.join('WikidPadHelp', 'data'),
                   glob(os.path.join('WikidPadHelpOG-static17', 'data', "*.*"))),
                  ('export', [os.path.join('export', 'wikistyle.css')])]
)
Note: See TracBrowser for help on using the browser.