-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1.06 KB
/
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
27
28
29
30
31
32
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='WSGITrac',
version = '0.4-penelope',
description="Trac WSGI plugin",
long_description="Trac WSGI plugin",
author="Martin Paljak", author_email="martin@paljak.pri.ee",
license='GPL', url='http://www.trac-hacks.org/wiki/TracWsgiPlugin',
packages=find_packages(exclude=['ez_setup', '*.tests*']),
zip_safe=True,
include_package_data=True,
install_requires = [
'setuptools>=0.6c5',
'Trac>=0.11dev',
'PasteDeploy',
'Genshi'
],
entry_points = {
'trac.plugins': [
'wsgiplugin.wsgiplugin = wsgiplugin.wsgiplugin'
],
'paste.app_factory': [
'main = wsgiplugin.wsgiplugin:wsgi_trac',
'trac = wsgiplugin.wsgiplugin:wsgi_trac',
'tracs = wsgiplugin.wsgiplugin:wsgi_tracs',
'permanent_redirect = wsgiplugin.wsgiplugin:permanent_redirect',
'temporary_redirect = wsgiplugin.wsgiplugin:temporary_redirect'
]
}
)