~ubuntu-branches/ubuntu/jaunty/calibre/jaunty-backports

« back to all changes in this revision

Viewing changes to src/calibre/trac/setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-01-20 17:14:02 UTC
  • Revision ID: james.westby@ubuntu.com-20090120171402-8y3znf6nokwqe80k
Tags: upstream-0.4.125+dfsg
ImportĀ upstreamĀ versionĀ 0.4.125+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
__license__   = 'GPL v3'
 
2
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
 
3
 
 
4
from setuptools import find_packages, setup
 
5
 
 
6
# name can be any name.  This name will be used to create .egg file.
 
7
# name that is used in packages is the one that is used in the trac.ini file.
 
8
# use package name as entry_points
 
9
setup(
 
10
    name='TracLibprs500Plugins', version='0.1',
 
11
    packages=find_packages(exclude=['*.tests*']),
 
12
    entry_points = """
 
13
        [trac.plugins]
 
14
        download = plugins.download
 
15
        changelog = plugins.Changelog
 
16
    """,
 
17
    package_data={'plugins': ['templates/*.html',
 
18
                               'htdocs/css/*.css', 
 
19
                               'htdocs/images/*']},
 
20
)
 
21