|
Revision 3416, 0.8 kB
(checked in by coderanger, 10 months ago)
|
Change my email to avoid Yahoo, which decided to brake my scraper script recently.
|
| Line | |
|---|
| 1 |
#!/usr/bin/env python |
|---|
| 2 |
# -*- coding: iso-8859-1 -*- |
|---|
| 3 |
|
|---|
| 4 |
from setuptools import setup |
|---|
| 5 |
|
|---|
| 6 |
setup( |
|---|
| 7 |
name = 'TracCondFields', |
|---|
| 8 |
version = '1.0', |
|---|
| 9 |
packages = ['condfields'], |
|---|
| 10 |
package_data = { 'condfields': ['templates/*.cs', 'htdocs/*.js', 'htdocs/*.css' ] }, |
|---|
| 11 |
|
|---|
| 12 |
author = 'Noah Kantrowitz', |
|---|
| 13 |
author_email = 'noah@coderanger.net', |
|---|
| 14 |
description = 'Support for conditional fields in different ticket types.', |
|---|
| 15 |
license = 'BSD', |
|---|
| 16 |
keywords = 'trac plugin ticket conditional fields', |
|---|
| 17 |
url = 'http://trac-hacks.org/wiki/CondFieldsPlugin', |
|---|
| 18 |
classifiers = [ |
|---|
| 19 |
'Framework :: Trac', |
|---|
| 20 |
], |
|---|
| 21 |
|
|---|
| 22 |
install_requires = ['TracWebAdmin'], |
|---|
| 23 |
|
|---|
| 24 |
entry_points = { |
|---|
| 25 |
'trac.plugins': [ |
|---|
| 26 |
'condfields.web_ui = condfields.web_ui', |
|---|
| 27 |
] |
|---|
| 28 |
}, |
|---|
| 29 |
) |
|---|