-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·52 lines (49 loc) · 1.7 KB
/
setup.py
File metadata and controls
executable file
·52 lines (49 loc) · 1.7 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2006-2008 Emmanuel Blot <emmanuel.blot@free.fr>
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://trac.edgewall.com/license.html.
#
# This software consists of voluntary contributions made by many
# individuals. For the exact contribution history, see the revision
# history and logs, available at http://projects.edgewall.com/trac/.
from setuptools import setup, find_packages
PACKAGE = 'TracRevtreePlugin'
VERSION = '2.1.3'
setup(
name=PACKAGE,
version=VERSION,
description='Revision graph visualizer for the Trac VCS browser',
author='Emmanuel Blot',
author_email='sylvain.delisle25@gmail.com',
license='BSD',
url='https://github.com/sdelisle25/TracRevTreePlugin.git',
keywords="trac revision svg graphical tree browser visual",
install_requires=['Trac>=1.0.0', 'Trac<1.3'],
packages=find_packages(exclude=['ez_setup', '*.tests*', '*.enhancers.*']),
package_data={
'revtree': [
'htdocs/css/*.css',
'htdocs/fonts/*',
'htdocs/js/*.js',
'htdocs/js/require-2.1.20/*.js',
'htdocs/images/*.gif',
'templates/*.html'
'templates/*.svg'
]
},
entry_points={
'trac.plugins': [
'revtree.web_ui = revtree.web_ui',
'revtree.enhancer = revtree.enhancer',
'revtree.optimizer = revtree.optimizer',
'revtree.db = revtree.db',
'revtree.admin = revtree.admin',
'revtree.rhs_hooks = revtree.rhs_hooks'
]
}
)