-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (23 loc) · 834 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (23 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
from setuptools import setup
setup(
name='TracGit',
install_requires='trac',
description='GIT version control plugin for Trac 0.13',
author='Herbert Valerio Riedel',
author_email='hvr@gnu.org',
maintainer='Christian Boos',
maintainer_email='cboos@neuf.fr',
keywords='trac scm plugin git',
url="http://github.com/cboos/trac-git-plugin",
version='0.13.0.0',
license="GPL",
long_description="""
This Trac 0.13 plugin provides support for the GIT SCM.
At this point, it'll still work fine with Trac 0.12.
See http://trac-hacks.org/wiki/GitPlugin for more details.
""",
packages=['tracext', 'tracext.git'],
namespace_packages=['tracext'],
entry_points = {'trac.plugins': 'git = tracext.git.git_fs'},
data_files=['COPYING','README'])