-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.37 KB
/
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
37
38
39
40
41
42
#!/usr/bin/env python
"""Setup pymdown-lexers."""
from setuptools import setup, find_packages
entry_points = '''
[pygments.lexers]
lambdaexpression=pymdown_lexers:LambdaExpressionLexer
bettertext=pymdown_lexers:BetterTextLexer
multibytebnf=pymdown_lexers:MultibyteBnfLexer
'''
setup(
name='pymdown-lexers',
version='1.0.0',
description='Pygments lexer package for PyMdown.',
author='Shin',
url='https://github.com/kusumotolab/pymdown-lexers',
packages=find_packages(),
entry_points=entry_points,
install_requires=[
'Pygments>=2.0.1'
],
zip_safe=True,
license='MIT License',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML'
]
)