| Line | |
|---|
| 1 |
from setuptools import setup |
|---|
| 2 |
|
|---|
| 3 |
setup( |
|---|
| 4 |
name='TracGit', |
|---|
| 5 |
description='GIT version control plugin for Trac', |
|---|
| 6 |
author='Herbert Valerio Riedel', |
|---|
| 7 |
author_email='hvr@gnu.org', |
|---|
| 8 |
|
|---|
| 9 |
keywords='trac scm plugin git', |
|---|
| 10 |
url='http://trac-hacks.org/wiki/GitPlugin', |
|---|
| 11 |
version='0.0.1', |
|---|
| 12 |
license="GPL", |
|---|
| 13 |
long_description=""" |
|---|
| 14 |
This Trac 0.10+ plugin provides support for the GIT SCM. |
|---|
| 15 |
""", |
|---|
| 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 |
) |
|---|