-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (30 loc) · 985 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
import os.path
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pygments-lexer-solidity',
version='0.7.0',
description='Solidity lexer for Pygments (includes Yul intermediate language)',
long_description=read('README.rst'),
license="BSD",
author='Noel Maersk',
author_email='[email protected]',
url='https://gitlab.com/veox/pygments-lexer-solidity',
classifiers=[
'Environment :: Plugins',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
packages=['pygments_lexer_solidity'],
python_requires='>=3.3, <4',
install_requires=[
'pygments>=2.1'
],
keywords='pygments lexer syntax highlight solidity sol yul ethereum',
entry_points="""
[pygments.lexers]
solidity = pygments_lexer_solidity:SolidityLexer
yul = pygments_lexer_solidity:YulLexer
"""
)