Changeset 3270
- Timestamp:
- 02/24/08 03:21:03 (8 months ago)
- Files:
-
- gitplugin/0.11/setup.py (modified) (1 diff, 1 prop)
- gitplugin/0.11/tracext/git/git_fs.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gitplugin/0.11/setup.py
- Property svn:executable set to *
r3205 r3270 1 #!/usr/bin/env python 2 1 3 from setuptools import setup 2 4 3 5 setup( 4 6 name='TracGit', 7 install_requires='Trac >=0.11dev, ==0.11b1', 5 8 description='GIT version control plugin for Trac 0.11', 6 9 author='Herbert Valerio Riedel', 7 10 author_email='hvr@gnu.org', 8 9 11 keywords='trac scm plugin git', 10 12 url="http://trac-hacks.org/wiki/GitPlugin", gitplugin/0.11/tracext/git/git_fs.py
r3269 r3270 37 37 raise TracError("python >= 2.5 dependancy not met") 38 38 39 import pkg_resources40 pkg_resources.require('Trac>=0.11dev')41 42 39 import PyGIT 43 40
