-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (29 loc) · 962 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
from setuptools import setup, find_packages
version = '0.1'
setup(name='pygments-doconce',
version=version,
description='Syntax coloring for DocOnce markup language',
#long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='pygments doconce lexer',
author='Hans Petter Langtangen',
author_email='[email protected]',
url='',
license='BSD',
py_modules=['doconce_lexer'],
zip_safe=True,
install_requires=[
'setuptools',
],
entry_points={
'pygments.lexers': 'doconce=doconce_lexer:DocOnceLexer',
},
)