source: tracwysiwygplugin/0.10/setup.py

Last change on this file was 13296, checked in by Jun Omae, 10 years ago

tracwysiwygplugin: bump up the version

  • Property svn:executable set to *
File size: 604 bytes
RevLine 
[2637]1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4from setuptools import setup, find_packages
5
6setup(
7    name = 'TracWysiwyg',
[13296]8    version = '0.10.0.5',
[2637]9    description = 'TracWiki WYSIWYG Editor',
10    license = 'BSD',
11    url = 'http://trac-hacks.org/wiki/TracWysiwygPlugin',
12    author = 'Jun Omae',
13    author_email = 'omae@opengroove.com',
14    packages = find_packages(exclude=['*.tests*']),
15    package_data = {
16        'tracwysiwyg' : [ 'htdocs/*.js', 'htdocs/*.css', 'htdocs/*.png' ],
17    },
18    entry_points = {
19        'trac.plugins': [
20            'tracwysiwyg = tracwysiwyg',
21        ],
22    }
23)
Note: See TracBrowser for help on using the repository browser.