|
Revision 3950, 1.3 kB
(checked in by eblot, 6 months ago)
|
Fixes #3325 setup file was invalid, and enable growl image background
|
- Property svn:executable set to
*
|
| Line | |
|---|
| 1 |
#!/usr/bin/env python |
|---|
| 2 |
# -*- coding: utf-8 -*- |
|---|
| 3 |
# |
|---|
| 4 |
# Copyright (C) 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 = 'TracGrowlPlugin' |
|---|
| 18 |
VERSION = '0.2.1' |
|---|
| 19 |
|
|---|
| 20 |
setup ( |
|---|
| 21 |
name = PACKAGE, |
|---|
| 22 |
version = VERSION, |
|---|
| 23 |
description = 'Growl Notifier for Trac events', |
|---|
| 24 |
author = 'Emmanuel Blot', |
|---|
| 25 |
author_email = 'emmanuel.blot@free.fr', |
|---|
| 26 |
license='BSD', |
|---|
| 27 |
url='http://trac-hacks.org/wiki/GrowlPlugin', |
|---|
| 28 |
keywords = "trac growl event notifier", |
|---|
| 29 |
install_requires = [ 'Trac>=0.11dev', 'Trac<0.12'], |
|---|
| 30 |
packages = find_packages(exclude=['ez_setup']), |
|---|
| 31 |
package_data={ |
|---|
| 32 |
'growl': [ |
|---|
| 33 |
'htdocs/css/*.css', |
|---|
| 34 |
'htdocs/images/*.png', |
|---|
| 35 |
'templates/*.html' |
|---|
| 36 |
] |
|---|
| 37 |
}, |
|---|
| 38 |
entry_points = { |
|---|
| 39 |
'trac.plugins': [ |
|---|
| 40 |
'growl.notifier = growl.notifier', |
|---|
| 41 |
'growl.web_ui = growl.web_ui' |
|---|
| 42 |
] |
|---|
| 43 |
} |
|---|
| 44 |
) |
|---|