You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
443 B
23 lines
443 B
""" |
|
Install and setup CodeIgniter highlighting for Pygments. |
|
""" |
|
|
|
from setuptools import setup |
|
|
|
entry_points = """ |
|
[pygments.lexers] |
|
cilexer = cilexer.cilexer:CodeIgniterLexer |
|
""" |
|
|
|
setup( |
|
name='pycilexer', |
|
version='0.1', |
|
description=__doc__, |
|
author="EllisLab, Inc.", |
|
packages=['cilexer'], |
|
install_requires=( |
|
'sphinx >= 1.0.7', |
|
'sphinxcontrib-phpdomain >= 0.1.3-1' |
|
), |
|
entry_points=entry_points |
|
)
|
|
|