Changeset 3205
- Timestamp:
- 02/11/08 05:22:56 (10 months ago)
- Files:
-
- gitplugin/0.11/setup.py (modified) (1 diff)
- gitplugin/0.11/tracext (added)
- gitplugin/0.11/tracext/git (added)
- gitplugin/0.11/tracext/git/git_fs.py (moved) (moved from gitplugin/0.11/gitplugin/git_fs.py)
- gitplugin/0.11/tracext/git/__init__.py (moved) (moved from gitplugin/0.11/gitplugin/__init__.py)
- gitplugin/0.11/tracext/git/PyGIT.py (moved) (moved from gitplugin/0.11/gitplugin/PyGIT.py)
- gitplugin/0.11/tracext/__init__.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gitplugin/0.11/setup.py
r1319 r3205 3 3 setup( 4 4 name='TracGit', 5 description='GIT version control plugin for Trac ',5 description='GIT version control plugin for Trac 0.11', 6 6 author='Herbert Valerio Riedel', 7 7 author_email='hvr@gnu.org', 8 8 9 9 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', 12 12 license="GPL", 13 13 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. 15 17 """, 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'])
