source: ckeditorplugin/tags/0.1/setup.py

Last change on this file was 9705, checked in by Itamar Ostricher, 13 years ago

Importing initial work by Edan Maor (based on TracWysiwygPlugin, replacing their textarea with CKEditor)

File size: 542 bytes
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4from setuptools import setup, find_packages
5
6setup(
7    name = 'CKEditorPlugin',
8    version = '0.1',
9    description = 'Trac wiki WYSIWYG editor based on CKEditor',
10    author = 'Edan Maor',
11    author_email = 'edanm@btlms.com',
12    packages = find_packages(exclude=['*.tests*']),
13    package_data = {
14        'ckeditortrac' : [ 'htdocs/*.js', 'htdocs/*.css', 'htdocs/*.png'],
15
16    },
17    entry_points = {
18        'trac.plugins': [
19            'ckeditortrac = ckeditortrac',
20        ],
21    }
22)
Note: See TracBrowser for help on using the repository browser.