diff options
Diffstat (limited to '')
-rw-r--r-- | contrib/setup.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/contrib/setup.py b/contrib/setup.py new file mode 100644 index 0000000..30330b8 --- /dev/null +++ b/contrib/setup.py @@ -0,0 +1,33 @@ +#!/usr/bin/python + +from __future__ import unicode_literals +from setuptools import setup + +setup(name='pygments-crmsh-lexers', + version='0.0.5', + description='Pygments crmsh custom lexers.', + keywords='pygments crmsh lexer', + license='BSD', + + author='Kristoffer Gronlund', + author_email='kgronlund@suse.com', + + url='https://github.com/ClusterLabs/crmsh', + + packages=['pygments_crmsh_lexers'], + install_requires=['pygments>=2.0.2'], + + entry_points='''[pygments.lexers] + ANSIColorsLexer=pygments_crmsh_lexers:ANSIColorsLexer + CrmshLexer=pygments_crmsh_lexers:CrmshLexer''', + + classifiers=[ + 'Environment :: Plugins', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', + 'Topic :: Software Development :: Libraries :: Python Modules', + ],) |