2008-04-26 16:38:28 -07:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='warzone-pygments',
|
|
|
|
version='0.1',
|
|
|
|
packages=find_packages(exclude=['*.tests*']),
|
|
|
|
author="Giel van Schijndel",
|
|
|
|
author_email="me@mortis.eu",
|
|
|
|
description="This plugin adds the capability to Pygments to lex Warzone Resource Files (WRF).",
|
|
|
|
license="GPL",
|
|
|
|
url="http://wz2100.net/",
|
|
|
|
entry_points = """
|
|
|
|
[pygments.lexers]
|
|
|
|
wrflexer = warzone:WRFLexer
|
2008-04-26 18:46:59 -07:00
|
|
|
strreslexer = warzone:STRRESLexer
|
2008-04-27 17:45:15 -07:00
|
|
|
wzlevellexer = warzone:LevelLexer
|
2008-04-26 16:38:28 -07:00
|
|
|
"""
|
|
|
|
)
|