Derek Jones | 8ede1a2 | 2011-10-05 13:34:52 -0500 | [diff] [blame] | 1 | """ |
2 | Install and setup CodeIgniter highlighting for Pygments. | ||||
3 | """ | ||||
4 | |||||
5 | from setuptools import setup | ||||
6 | |||||
7 | entry_points = """ | ||||
8 | [pygments.lexers] | ||||
9 | cilexer = cilexer.cilexer:CodeIgniterLexer | ||||
10 | """ | ||||
11 | |||||
12 | setup( | ||||
13 | name='pycilexer', | ||||
14 | version='0.1', | ||||
15 | description=__doc__, | ||||
16 | author="EllisLab, Inc.", | ||||
17 | packages=['cilexer'], | ||||
18 | install_requires=( | ||||
19 | 'sphinx >= 1.0.7', | ||||
20 | 'sphinxcontrib-phpdomain >= 0.1.3-1' | ||||
21 | ), | ||||
22 | entry_points=entry_points | ||||
23 | ) |