File: setup.py

package info (click to toggle)
trac-wysiwyg 0.2%2Bsvn5931-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 532 kB
  • ctags: 416
  • sloc: python: 62; makefile: 4
file content (23 lines) | stat: -rw-r--r-- 599 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages

setup(
    name = 'TracWysiwyg',
    version = '0.2',
    description = 'TracWiki WYSIWYG Editor',
    license = 'BSD',
    url = 'http://trac-hacks.org/wiki/TracWysiwygPlugin',
    author = 'Jun Omae',
    author_email = 'omae@opengroove.com',
    packages = find_packages(exclude=['*.tests*']),
    package_data = {
        'tracwysiwyg' : [ 'htdocs/*.js', 'htdocs/*.css', 'htdocs/*.png' ],
    },
    entry_points = {
        'trac.plugins': [
            'tracwysiwyg = tracwysiwyg',
        ],
    }
)