-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
50 lines (44 loc) · 1.2 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
import sys
from setuptools import setup
PACKAGE = 'TracAdvancedSearch'
VERSION = '0.6.1'
REQUIRES = [
'Trac>=0.11',
'pysolr>=2.0.14',
]
if sys.version_info[:4] < (2, 6):
REQUIRES.append('simplejson')
CLASSIFIERS = [
'Framework :: Trac',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
]
setup(name=PACKAGE,
version=VERSION,
description='This plugin allows you to index your wiki and ticket data '
'in a full text search engine and search it from a button '
'in the main navbar.',
classifiers=CLASSIFIERS,
keywords=['trac', 'plugin', 'search', 'full-text-search'],
author='Daniel Nephin',
author_email='[email protected]',
url="http://github.com/dnephin/TracAdvancedSearchPlugin",
license='SEE LICENSE',
platforms=['linux', 'osx', 'unix', 'win32'],
packages=['tracadvsearch'],
entry_points={'trac.plugins': '%s = tracadvsearch' % PACKAGE},
package_data={
'tracadvsearch': [
'templates/*.html',
'htdocs/css/*.css',
'htdocs/js/*.js'
]
},
include_package_data=True,
install_requires=REQUIRES,
)