|
Revision 3773, 0.7 kB
(checked in by k0s, 7 months ago)
|
update url to point to the trac-hacks wiki page
|
| Line | |
|---|
| 1 |
from setuptools import find_packages, setup |
|---|
| 2 |
|
|---|
| 3 |
version='0.1.2' |
|---|
| 4 |
|
|---|
| 5 |
setup(name='AutoQuery', |
|---|
| 6 |
version=version, |
|---|
| 7 |
description="in ticket summary, each of the ticket attributes (milestone, priority, owner, etc) to contain a generated link to a custom query consisting of all tickets with that attribute value.", |
|---|
| 8 |
author='Jeff Hammel', |
|---|
| 9 |
author_email='jhammel@openplans.org', |
|---|
| 10 |
url='http://trac-hacks.org/wiki/AutoQueryPlugin', |
|---|
| 11 |
keywords='trac plugin', |
|---|
| 12 |
license="GPL", |
|---|
| 13 |
packages=find_packages(exclude=['ez_setup', 'examples', 'tests*']), |
|---|
| 14 |
include_package_data=True, |
|---|
| 15 |
zip_safe=False, |
|---|
| 16 |
entry_points = """ |
|---|
| 17 |
[trac.plugins] |
|---|
| 18 |
autoquery = autoquery |
|---|
| 19 |
""", |
|---|
| 20 |
) |
|---|