| 1 |
#!/usr/bin/env python |
|---|
| 2 |
# -*- coding: utf-8 -*- |
|---|
| 3 |
# |
|---|
| 4 |
# Copyright (C) 2006-2008 Emmanuel Blot <emmanuel.blot@free.fr> |
|---|
| 5 |
# All rights reserved. |
|---|
| 6 |
# |
|---|
| 7 |
# This software is licensed as described in the file COPYING, which |
|---|
| 8 |
# you should have received as part of this distribution. The terms |
|---|
| 9 |
# are also available at http://trac.edgewall.com/license.html. |
|---|
| 10 |
# |
|---|
| 11 |
# This software consists of voluntary contributions made by many |
|---|
| 12 |
# individuals. For the exact contribution history, see the revision |
|---|
| 13 |
# history and logs, available at http://projects.edgewall.com/trac/. |
|---|
| 14 |
|
|---|
| 15 |
from setuptools import setup, find_packages |
|---|
| 16 |
|
|---|
| 17 |
PACKAGE = 'TracRevtreePlugin' |
|---|
| 18 |
VERSION = '0.6.0' |
|---|
| 19 |
|
|---|
| 20 |
setup ( |
|---|
| 21 |
name = PACKAGE, |
|---|
| 22 |
version = VERSION, |
|---|
| 23 |
description = 'Revision graph visualizer for the Trac VCS browser', |
|---|
| 24 |
author = 'Emmanuel Blot', |
|---|
| 25 |
author_email = 'emmanuel.blot@free.fr', |
|---|
| 26 |
license='BSD', |
|---|
| 27 |
url='http://trac-hacks.org/wiki/RevtreePlugin', |
|---|
| 28 |
keywords = "trac revision svg graphical tree browser visual", |
|---|
| 29 |
install_requires = [ 'Trac>=0.11dev-r6572', 'Trac<0.12'], |
|---|
| 30 |
packages = find_packages(exclude=['ez_setup', '*.tests*', '*.enhancers.*']), |
|---|
| 31 |
package_data={ |
|---|
| 32 |
'revtree': [ |
|---|
| 33 |
'htdocs/css/*.css', |
|---|
| 34 |
'htdocs/js/*.js', |
|---|
| 35 |
'htdocs/images/*.gif', |
|---|
| 36 |
'templates/*.html' |
|---|
| 37 |
] |
|---|
| 38 |
}, |
|---|
| 39 |
entry_points = { |
|---|
| 40 |
'trac.plugins': [ |
|---|
| 41 |
'revtree.web_ui = revtree.web_ui', |
|---|
| 42 |
'revtree.enhancer = revtree.enhancer', |
|---|
| 43 |
'revtree.optimizer = revtree.optimizer' |
|---|
| 44 |
] |
|---|
| 45 |
} |
|---|
| 46 |
) |
|---|