| [7008] | 1 | #!/usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | from setuptools import find_packages, setup |
|---|
| 4 | |
|---|
| 5 | |
|---|
| [17736] | 6 | setup(name='TracLogViewer', |
|---|
| 7 | version='0.4', |
|---|
| [7008] | 8 | description="View Trac log files from within the Web-UI", |
|---|
| [7067] | 9 | long_description="This plugin allows you to view your trac.log logfile without shell access, just via the Web-UI Admin interface. You can select to only display messages from a specified log level (e.g. only warnings), optionally including higher levels. Moreover, you may restrict the output to the latest N lines, and even filter for lines containing a specified string or even matching a regular expression.", |
|---|
| [7008] | 10 | author='Andreas Itzchak Rehberg', |
|---|
| 11 | author_email='izzysoft@qumran.org', |
|---|
| 12 | url='http://trac-hacks.org/wiki/izzy', |
|---|
| 13 | keywords='trac plugin log', |
|---|
| [17736] | 14 | license='GPL', |
|---|
| 15 | install_requires=['Trac'], |
|---|
| [7008] | 16 | packages=find_packages(exclude=['ez_setup', 'examples', '*tests*']), |
|---|
| 17 | include_package_data=True, |
|---|
| [17736] | 18 | package_data={'logviewer': [ |
|---|
| [7008] | 19 | 'templates/*.html', |
|---|
| 20 | 'htdocs/css/*.css', |
|---|
| [17736] | 21 | ]}, |
|---|
| [7008] | 22 | zip_safe=True, |
|---|
| 23 | entry_points={'trac.plugins': [ |
|---|
| [17736] | 24 | 'logviewer = logviewer.web_ui' |
|---|
| 25 | ]}, |
|---|
| [7067] | 26 | classifiers=[ |
|---|
| 27 | 'Development Status :: 4 - Beta', |
|---|
| 28 | 'Environment :: Web Environment', |
|---|
| 29 | 'Framework :: Trac', |
|---|
| 30 | 'Intended Audience :: Developers', |
|---|
| 31 | 'Intended Audience :: System Administrators', |
|---|
| 32 | 'License :: OSI Approved :: GNU General Public License (GPL)', |
|---|
| 33 | 'Natural Language :: English', |
|---|
| 34 | 'Operating System :: OS Independent', |
|---|
| 35 | 'Programming Language :: Python', |
|---|
| 36 | 'Topic :: Software Development :: Bug Tracking', |
|---|
| 37 | 'Topic :: System :: Logging', |
|---|
| 38 | 'Topic :: System :: Systems Administration', |
|---|
| [17736] | 39 | ], |
|---|
| 40 | ) |
|---|