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()
|