File: setup.py

package info (click to toggle)
trac-wysiwyg 0.12.0.7%2Bsvn18546-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 332 kB
  • sloc: javascript: 2,096; python: 88; makefile: 2
file content (35 lines) | stat: -rwxr-xr-x 1,095 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
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-

def main():
    kwargs = {
        'name': 'TracWysiwyg',
        'version': '0.12.0.7',
        'description': 'TracWiki WYSIWYG Editor',
        'license': 'BSD',
        'url': 'https://trac-hacks.org/wiki/TracWysiwygPlugin',
        'author': 'Jun Omae',
        'author_email': 'omae@opengroove.com',
        'classifiers': [
            'Framework :: Trac',
            'Programming Language :: Python :: 2.4',
            'Programming Language :: Python :: 2.5',
            'Programming Language :: Python :: 2.6',
            'Programming Language :: Python :: 2.7',
            'Programming Language :: Python :: 3',
        ],
        'packages': find_packages(exclude=['*.tests*']),
        'package_data': {
            'tracwysiwyg' : ['htdocs/*.js', 'htdocs/*.css', 'htdocs/*.png'],
        },
        'entry_points': {
            'trac.plugins': [
                'tracwysiwyg = tracwysiwyg',
            ],
        }
    }
    setup(**kwargs)

if __name__ == '__main__':
    from setuptools import setup, find_packages
    main()