Sha256: 62de0bb041501ff3c043951f79cb2fa0ccf0708fb381a0634849cbc3926f8f63
Contents?: true
Size: 818 Bytes
Versions: 12
Compression:
Stored size: 818 Bytes
Contents
#!/usr/bin/env python # -*- coding: iso-8859-1 -*- from setuptools import setup setup( name = 'TracSaintTheme', version = '1.0', packages = ['sainttheme'], package_data = { 'sainttheme': ['templates/*.html', 'htdocs/*.png', 'htdocs/*.css', 'htdocs/img/*.gif', 'htdocs/img/*.jpg' ] }, author = 'Keith Salisbury', author_email = 'keithsalisbury@gmail.com', description = 'A theme for Trac by Saint Digital (http://www.saintdigital.co.uk).', license = 'BSD', keywords = 'trac plugin theme', url = 'http://ktec.github.com/subtrac/sainttheme', classifiers = [ 'Framework :: Trac', ], install_requires = ['Trac', 'TracThemeEngine>=2.0'], entry_points = { 'trac.plugins': [ 'sainttheme.theme = sainttheme.theme', ] }, )
Version data entries
12 entries across 12 versions & 1 rubygems