This extension is used to collapse the example responses presented in the API documentation, which can be quite long. Signed-off-by: Eric Callahan <arksine.code@gmail.com>
8 lines
171 B
Python
8 lines
171 B
Python
from setuptools import setup
|
|
setup(
|
|
name='pymdown_extras',
|
|
version='1.0.0',
|
|
py_modules=['collapse_code'],
|
|
install_requires=['pymdown-extensions>=10.7'],
|
|
)
|