forked from Southen/trac-readme-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 712 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 712 Bytes
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
from setuptools import setup
setup(
name='ReadmeRendererPlugin',
version='0.3',
description='Plugin to display README* files in Browse Source directory '
'listings, and preview .md files as rendered Markdown',
author='Southen',
url='https://github.com/Southen/trac-readme-plugin',
license='BSD',
packages=['readme_renderer'],
classifiers=[
'Framework :: Trac',
'License :: OSI Approved :: BSD License',
],
entry_points={
'trac.plugins': 'readme_renderer = readme_renderer'
},
install_requires=['Trac'],
package_data={
'readme_renderer': [
'htdocs/*.css',
'htdocs/*.js'
]
}
)