source: ckeditorplugin/trunk/setup.py

Last change on this file was 10922, checked in by Franz, 12 years ago

fixes #8850, #8851, #8852: implemented a lot of new functionalities, so named this version 1.1dev

File size: 601 bytes
RevLine 
[9705]1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4from setuptools import setup, find_packages
5
6setup(
[10241]7    name = 'CKIntegration',
[10922]8    version = '1.1dev',
[10241]9    description = 'CKEditor integration for Trac',
[10922]10    author = 'Itamar Ostricher, Edan Maor, Franz Mayer',
11    author_email = 'itamarost@gmail.com, edanm@btlms.com, franz.mayer@gefasoft.de',
[9705]12    packages = find_packages(exclude=['*.tests*']),
13    package_data = {
[10922]14        'ckintegration' : ['htdocs/*.js', 'htdocs/images/*.png'],
[9705]15
16    },
17    entry_points = {
18        'trac.plugins': [
[10241]19            'ckintegration = ckintegration',
[9705]20        ],
21    }
22)
Note: See TracBrowser for help on using the repository browser.