Changeset 3205

Show
Ignore:
Timestamp:
02/11/08 05:22:56 (1 year ago)
Author:
hvr
Message:

GitPlugin: converted to use tracext package namespace (see trac:"TracDev/Proposals/Setuptools") and bumped version to 0.11.0.1; from now on, for 0.11 this plugin needs to be enabled with

[components]
tracext.git.* = enabled
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gitplugin/0.11/setup.py

    r1319 r3205  
    33setup( 
    44    name='TracGit', 
    5     description='GIT version control plugin for Trac', 
     5    description='GIT version control plugin for Trac 0.11', 
    66    author='Herbert Valerio Riedel', 
    77    author_email='hvr@gnu.org', 
    88     
    99    keywords='trac scm plugin git', 
    10     url='http://trac-hacks.org/wiki/GitPlugin'
    11     version='0.0.1', 
     10    url="http://trac-hacks.org/wiki/GitPlugin"
     11    version='0.11.0.1', 
    1212    license="GPL", 
    1313    long_description=""" 
    14     This Trac 0.10+ plugin provides support for the GIT SCM. 
     14    This Trac 0.11 plugin provides support for the GIT SCM. 
     15 
     16    See http://trac-hacks.org/wiki/GitPlugin for more details. 
    1517    """, 
    16     zip_safe=True, 
    17     packages=['gitplugin'], 
    18     entry_points = {'trac.plugins': 
    19                     ['git = gitplugin.git_fs'], 
    20                     }, 
    21     data_files=['COPYING','README'], 
    22     install_requires=[], 
    23     ) 
     18    packages=['tracext', 'tracext.git'], 
     19    entry_points = {'trac.plugins': 'git = tracext.git.git_fs'}, 
     20    data_files=['COPYING','README'])