|
Revision 3416, 0.7 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 = 'TracGamedevTheme', |
|---|
| 8 |
version = '1.0', |
|---|
| 9 |
packages = ['gamedevtheme'], |
|---|
| 10 |
package_data = { 'gamedevtheme': ['templates/*.cs', 'htdocs/*.*' ] }, |
|---|
| 11 |
|
|---|
| 12 |
author = "Noah Kantrowitz", |
|---|
| 13 |
author_email = "noah@coderanger.net", |
|---|
| 14 |
description = "A theme for Trac from the RPI game development club.", |
|---|
| 15 |
license = "BSD", |
|---|
| 16 |
keywords = "trac plugin theme", |
|---|
| 17 |
url = "http://trac-hacks.org/wiki/GamedevTheme", |
|---|
| 18 |
classifiers = [ |
|---|
| 19 |
'Framework :: Trac', |
|---|
| 20 |
], |
|---|
| 21 |
|
|---|
| 22 |
install_requires = ['TracThemeEngine'], |
|---|
| 23 |
|
|---|
| 24 |
entry_points = { |
|---|
| 25 |
'trac.plugins': [ |
|---|
| 26 |
'gamedevtheme.theme = gamedevtheme.theme', |
|---|
| 27 |
] |
|---|
| 28 |
} |
|---|
| 29 |
) |
|---|