Changeset 1552

Show
Ignore:
Timestamp:
11/13/06 06:59:02 (2 years ago)
Author:
coderanger
Message:

HierWikiPlugin:

  • Relative links in the wiki.
  • Hierarchy enforcement.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • hierwikiplugin/0.10/setup.py

    r899 r1552  
    66setup( 
    77    name = 'TracHierWiki', 
    8     version = '0.1-r1', 
     8    version = '1.0', 
    99    packages = ['hierwiki', 'hierwiki/macros' ], 
    10     package_data={ 'hierwiki' : [ ] }, 
     10    #package_data={ 'hierwiki' : [ ] }, 
    1111    author = "Noah Kantrowitz", 
    1212    author_email = "coderanger@yahoo.com", 
    13     description = "Hierarchical wiki macros.", 
    14     long_description = "Various things related to using the wiki in hierarchical way.", 
     13    description = "Hierarchical wiki utilities for Trac.", 
     14    long_description = "Various things related to using the Trac wiki in hierarchical way.", 
    1515    license = "BSD", 
    1616    keywords = "trac plugin macros wiki hierarchy", 
    1717    url = "http://trac-hacks.org/wiki/HierWikiPlugin", 
     18    classifiers = [ 
     19        'Framework :: Trac', 
     20    ], 
    1821 
    1922    entry_points = { 
    2023        'trac.plugins': [ 
     24            'hierwiki.filter = hierwiki.filter', 
     25            'hierwiki.formatter = hierwiki.formatter', 
    2126            'hierwiki.macros = hierwiki.macros', 
    2227        ],