02_agl_compositor.md: How to change default ref UI
[AGL/documentation.git] / theme / setup.py
1 from setuptools import setup, find_packages
2
3 VERSION = '1.0.4'
4
5 setup(
6     name="mkdocs-windmill",
7     version=VERSION,
8     url='https://github.com/gristlabs/mkdocs-windmill',
9     classifiers=[
10         'Development Status :: 5 - Production/Stable',
11         'License :: OSI Approved :: MIT License',
12         'Topic :: Documentation',
13         'Topic :: Text Processing',
14     ],
15     install_requires=[
16         'mkdocs',
17     ],
18     license='MIT',
19     description='MkDocs theme focused on navigation and usability',
20     author='Dmitry S',
21     author_email='dmitry@getgrist.com',
22     packages=find_packages(),
23     include_package_data=True,
24     entry_points={
25         'mkdocs.themes': [
26             'windmill = mkdocs_windmill',
27         ]
28     },
29     zip_safe=False
30 )