Changeset 2098

Show
Ignore:
Timestamp:
03/12/07 01:14:22 (2 years ago)
Author:
coderanger
Message:

AddCommentMacro:

Add dependency on the MacroPostPlugin.

Files:

Legend:

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

    r1267 r2098  
    66setup( 
    77    name = 'TracAddCommentMacro', 
    8     version = '0.1', 
     8    version = '0.2', 
    99    packages = ['addcomment'], 
    1010    package_data={ 'addcomment' : [  ] }, 
     
    1414    keywords = "trac plugin macro comments", 
    1515    url = "http://trac-hacks.org/wiki/AddCommentMacro", 
    16  
     16    classifiers = [ 
     17        'Framework :: Trac', 
     18    ], 
     19     
    1720    entry_points = { 
    1821        'trac.plugins': [ 
     
    2124    }, 
    2225 
    23     install_requires = [ ], 
     26    install_requires = [ 'TracMacroPost' ], 
    2427)