plugins/mkdocs-atlas-formatting-plugin/setup.py (24 lines of code) (raw):

from setuptools import find_packages, setup setup( name='mkdocs_atlas_formatting_plugin', version='1.0.0', author='Matthew Johnson', author_email='matthewj@netflix.com', description='Format Atlas directives in Markdown source to produce images and expression blocks.', license='Apache License, Version 2.0', keywords='atlas docs', url='https://github.com/Netflix/atlas-docs/tree/master/plugins/mkdocs-atlas-formatting-plugin', python_requires='>=3.6', install_requires=[ 'pillow', 'requests' ], extras_require={}, packages=find_packages(), include_package_data=True, entry_points={ 'mkdocs.plugins': [ 'atlas_formatting = mkdocs_atlas_formatting_plugin.plugin:AtlasFormattingPlugin' ] } )