-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·26 lines (23 loc) · 902 Bytes
/
setup.py
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
#!/usr/bin/env python
#
# Copyright 2010-2012 Niels Sascha Reedijk, niels.reedijk@gmail.com
# All rights reserved. Distributed under the terms of the MIT License.
#
from setuptools import setup
setup(name='TracDulwich',
install_requires='Trac >= 0.12',
description='GIT version control plugin, with the pure-python Dulwich module, for Trac 0.12',
author='Niels Sascha Reedijk',
author_email='niels.reedijk@gmail.com',
keywords='trac scm plugin git dulwich',
url="http://",
version='0.1.0',
license="MIT",
long_description="",
packages=['trac_dulwich'],
entry_points = {'trac.plugins':
['dulwich = trac_dulwich.dulwich_fs',
'dulwich.cache = trac_dulwich.cache',
'dulwich.api = trac_dulwich.api',
]},
)