source: tracwysiwygplugin/0.12/setup.py

Last change on this file was 18546, checked in by Jun Omae, 4 months ago

TracWysiwygPlugin: enable universal of bdist_wheel and add classifiers

  • Property svn:executable set to *
File size: 1.1 KB
RevLine 
[2637]1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
[16547]4def main():
5    kwargs = {
6        'name': 'TracWysiwyg',
[16729]7        'version': '0.12.0.7',
[16547]8        'description': 'TracWiki WYSIWYG Editor',
9        'license': 'BSD',
10        'url': 'https://trac-hacks.org/wiki/TracWysiwygPlugin',
11        'author': 'Jun Omae',
12        'author_email': 'omae@opengroove.com',
[18546]13        'classifiers': [
14            'Framework :: Trac',
15            'Programming Language :: Python :: 2.4',
16            'Programming Language :: Python :: 2.5',
17            'Programming Language :: Python :: 2.6',
18            'Programming Language :: Python :: 2.7',
19            'Programming Language :: Python :: 3',
20        ],
[16547]21        'packages': find_packages(exclude=['*.tests*']),
22        'package_data': {
23            'tracwysiwyg' : ['htdocs/*.js', 'htdocs/*.css', 'htdocs/*.png'],
24        },
25        'entry_points': {
26            'trac.plugins': [
27                'tracwysiwyg = tracwysiwyg',
28            ],
29        }
30    }
31    setup(**kwargs)
[2637]32
[16547]33if __name__ == '__main__':
34    from setuptools import setup, find_packages
35    main()
Note: See TracBrowser for help on using the repository browser.