source: ckeditorplugin/tags/1.0/setup.py

Last change on this file was 10241, checked in by Itamar Ostricher, 12 years ago

Initial import of the new and shiny 1.0dev

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