forked from hvr/trac-git-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (20 loc) · 746 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (20 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from setuptools import setup
setup(name='TracGit',
install_requires='Trac >= 0.12',
description='GIT version control plugin for Trac 0.12',
author='Herbert Valerio Riedel',
author_email='hvr@gnu.org',
keywords='trac scm plugin git',
url="http://trac-hacks.org/wiki/GitPlugin",
version='0.12.0.5',
license="BSD",
long_description="""
This Trac 0.12 plugin provides support for the GIT SCM.
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'},
package_data={'': ['COPYING','README']}
)