Import Upstream version 20180207
[hcoop/debian/mlton.git] / ide / pygments / setup.py
1 # -*- coding: utf-8 -*-
2 """
3 Standard ML Lexer for Pygments
4 """
5 from setuptools import setup
6
7 setup(
8 name='sml_lexer',
9 version='1.0',
10 author='Matthew Fluet',
11 author_email='Matthew.Fluet@gmail.com',
12 url='http://www.mlton.org/Pygments',
13 description=__doc__,
14 packages=['sml_lexer'],
15 entry_points='''
16 [pygments.lexers]
17 StandardMLLexer = sml_lexer:StandardMLLexer
18 '''
19 )