|
Revision 46, 0.7 kB
(checked in by sven, 1 year ago)
|
ffs it was an '
|
| Line | |
|---|
| 1 |
#!/usr/bin/env python |
|---|
| 2 |
# -*- coding: iso-8859-1 -*- |
|---|
| 3 |
|
|---|
| 4 |
from setuptools import setup |
|---|
| 5 |
|
|---|
| 6 |
setup( |
|---|
| 7 |
name = 'NatSkinTheme', |
|---|
| 8 |
version = '1.0', |
|---|
| 9 |
packages = ['natskintheme'], |
|---|
| 10 |
package_data = { 'natskintheme': ['templates/*.cs', 'htdocs/images/*.*', 'htdocs/*.*' ] }, |
|---|
| 11 |
|
|---|
| 12 |
author = "Sven Dowideit", |
|---|
| 13 |
author_email = "SvenDowideit@distributedINFORMATION.com", |
|---|
| 14 |
description = "TWiki NatSkin for Trac", |
|---|
| 15 |
license = "gpl", |
|---|
| 16 |
keywords = "trac plugin theme", |
|---|
| 17 |
url = "http://twiki.org/cgi-bin/view/Plugins/NatSkin", |
|---|
| 18 |
classifiers = [ |
|---|
| 19 |
'Framework :: Trac', |
|---|
| 20 |
], |
|---|
| 21 |
|
|---|
| 22 |
install_requires = ['TracThemeEngine'], |
|---|
| 23 |
|
|---|
| 24 |
entry_points = { |
|---|
| 25 |
'trac.plugins': [ |
|---|
| 26 |
'natskintheme.theme = natskintheme.theme', |
|---|
| 27 |
] |
|---|
| 28 |
} |
|---|
| 29 |
) |
|---|