#!/usr/bin/env python # -*- coding: iso-8859-1 -*- from setuptools import setup setup( name = 'NatSkinTheme', version = '1.0', packages = ['natskintheme'], package_data = { 'natskintheme': ['templates/*.cs', 'htdocs/images/*.*', 'htdocs/*.*' ] }, author = "Sven Dowideit", author_email = "SvenDowideit@distributedINFORMATION.com", description = "TWiki NatSkin for Trac", license = "gpl", keywords = "trac plugin theme", url = "http://twiki.org/cgi-bin/view/Plugins/NatSkin", classifiers = [ 'Framework :: Trac', ], install_requires = ['TracThemeEngine'], entry_points = { 'trac.plugins': [ 'natskintheme.theme = natskintheme.theme', ] } )