source: keywordsuggestplugin/tags/0.2/setup.py

Last change on this file was 4351, checked in by scratcher, 15 years ago

Removed unused import, version changed to 0.2

File size: 793 bytes
Line 
1from setuptools import find_packages, setup
2
3# name can be any name.  This name will be used to create .egg file.
4# name that is used in packages is the one that is used in the trac.ini file.
5# use package name as entry_points
6setup(
7    name='TracKeywordSuggest',
8    version = '0.2',
9    author = 'Dmitry Dianov',
10    author_email = 'scratcha at google mail',
11    description = "Add suggestions to ticket 'keywords' field",
12    license = "BSD",
13    url = 'http://trac-hacks.org/wiki/KeywordSuggestPlugin',
14    packages=find_packages(exclude=['*.tests*']),
15    package_data = { 'keywordsuggest': ['htdocs/*.js','htdocs/*.css','htdocs/*.gif'] },
16    entry_points = {
17        'trac.plugins': [
18            'keywordsuggest = keywordsuggest.keywordsuggest'
19        ]
20    }
21)
Note: See TracBrowser for help on using the repository browser.