Import Upstream version 20180207
[hcoop/debian/mlton.git] / ide / pygments / setup.py
CommitLineData
7f918cf1
CE
1# -*- coding: utf-8 -*-
2"""
3Standard ML Lexer for Pygments
4"""
5from setuptools import setup
6
7setup(
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)