X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=theme%2Fsetup.py;fp=theme%2Fsetup.py;h=444ca071a4833c5a8ce821f0e25ccf3377ea1dd9;hb=b0647613fa820df9487b32009267a3b20b65b478;hp=0000000000000000000000000000000000000000;hpb=57816f8bf1281e967d89ce0854060fb52ba42c81;p=AGL%2Fdocumentation.git diff --git a/theme/setup.py b/theme/setup.py new file mode 100644 index 0000000..444ca07 --- /dev/null +++ b/theme/setup.py @@ -0,0 +1,30 @@ +from setuptools import setup, find_packages + +VERSION = '1.0.4' + +setup( + name="mkdocs-windmill", + version=VERSION, + url='https://github.com/gristlabs/mkdocs-windmill', + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'License :: OSI Approved :: MIT License', + 'Topic :: Documentation', + 'Topic :: Text Processing', + ], + install_requires=[ + 'mkdocs', + ], + license='MIT', + description='MkDocs theme focused on navigation and usability', + author='Dmitry S', + author_email='dmitry@getgrist.com', + packages=find_packages(), + include_package_data=True, + entry_points={ + 'mkdocs.themes': [ + 'windmill = mkdocs_windmill', + ] + }, + zip_safe=False +)