source: pydotorgtheme/1.2/setup.py

Last change on this file was 16289, checked in by Ryan J Ollos, 7 years ago

3.0dev: Branch for Trac 1.2

Refs #13056.

File size: 829 bytes
RevLine 
[3083]1#!/usr/bin/env python
2# -*- coding: iso-8859-1 -*-
3
4from setuptools import setup
5
6setup(
7    name = 'TracPyDotOrgTheme',
[16289]8    version = '3.0',
[3083]9    packages = ['pydotorgtheme'],
10    package_data = { 'pydotorgtheme': ['htdocs/*.css', 'htdocs/*.png'] },
11
12    author = "Jeroen Ruigrok van der Werven",
13    author_email = 'asmodai@in-nomine.org',
14    maintainer = 'Noah Kantrowitz',
15    maintainer_email = "noah+pypi@coderanger.net",
16    description = "A theme for Trac based on python.org",
17    license = "BSD",
18    keywords = "trac plugin theme",
19    url = "http://trac-hacks.org/wiki/PyDotOrgTheme",
20    classifiers = [
21        'Framework :: Trac',
22    ],
23
[16289]24    install_requires = ['Trac', 'TracThemeEngine'],
25
[3083]26    entry_points = {
27        'trac.plugins': [
28            'pydotorgtheme.theme = pydotorgtheme.theme',
29        ]
30    }
31)
Note: See TracBrowser for help on using the repository browser.