forked from fcurella/jsx-lexer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 952 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import io
import os
from setuptools import setup, find_packages
VERSION = '0.0.7'
here = os.path.abspath(os.path.dirname(__file__))
README = io.open(os.path.join(here, 'README.rst'), encoding="utf8").read()
setup(
name='jsx-lexer',
description='A JSX lexer for Pygments',
long_description=README,
version=VERSION,
url='https://github.com/fcurella/jsx-lexer',
author='Flavio Curella',
author_email='[email protected]',
classifiers=[
'Environment :: Plugins',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
keywords='pygments highlight jsx react',
install_requires=[
'Pygments >= 2.1'
],
test_suite='tests',
license='MIT License',
packages=find_packages(exclude=["docs", "tests", "tests.*"]),
entry_points="""
[pygments.lexers]
jsx=jsx:JsxLexer
"""
)