-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (32 loc) · 948 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.4'
here = os.path.abspath(os.path.dirname(__file__))
README = io.open(os.path.join(here, 'README.md'), encoding="utf8").read()
setup(
name='vue-lexer',
description='A Vue lexer for Pygments',
long_description=README,
long_description_content_type="text/markdown",
version=VERSION,
url='https://github.com/testdrivenio/vue-lexer',
author='Michael Herman',
author_email='[email protected]',
classifiers=[
'Environment :: Plugins',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3'
],
keywords='pygments highlight vue',
install_requires=[
'Pygments >= 2.3'
],
test_suite='tests',
license='MIT License',
packages=find_packages(exclude=["docs", "tests", "tests.*"]),
entry_points="""
[pygments.lexers]
vue=vue:VueLexer
"""
)