#!/usr/bin/env python # -*- coding: iso-8859-1 -*- import os from setuptools import setup setup( name = 'TracThemeEngine', version = '2.0.1', packages = ['themeengine'], package_data = { 'themeengine': ['templates/*.html', 'htdocs/*.js', 'htdocs/*.css', 'htdocs/img/*.gif', 'htdocs/farbtastic/*.png', 'htdocs/farbtastic/*.js', 'htdocs/farbtastic/*.css' ] }, author = 'Noah Kantrowitz', author_email = 'noah@coderanger.net', description = 'Provide a modular interface to styling Trac.', long_description = open(os.path.join(os.path.dirname(__file__), 'README')).read(), license = 'BSD', keywords = 'trac plugin theme style', url = 'http://trac-hacks.org/wiki/ThemeEnginePlugin', download_url = 'http://trac-hacks.org/svn/themeengineplugin/0.11#egg=TracThemeEngine-dev', classifiers = [ 'Framework :: Trac', #'Development Status :: 1 - Planning', # 'Development Status :: 2 - Pre-Alpha', # 'Development Status :: 3 - Alpha', # 'Development Status :: 4 - Beta', 'Development Status :: 5 - Production/Stable', # 'Development Status :: 6 - Mature', # 'Development Status :: 7 - Inactive', 'Environment :: Web Environment', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python', ], install_requires = ['Trac'], entry_points = { 'trac.plugins': [ 'themeengine.web_ui = themeengine.web_ui', 'themeengine.api = themeengine.api', 'themeengine.admin = themeengine.admin', ], }, )