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
|
from setuptools import setup, find_packages
VERSION = '0.4'
with open('README.rst', mode='r') as fd:
long_description = fd.read()
setup(
name="mkdocs-nature",
version=VERSION,
url='https://waylan.github.io/mkdocs-nature/',
license='BSD',
description='A MkDocs theme. A clone of the "greenish" Sphinx theme of the same name.',
long_description=long_description,
author='Waylan Limberg',
author_email='waylan.limberg@icloud.com',
packages=find_packages(),
include_package_data=True,
install_requires=['mkdocs>=1.0'],
entry_points={
'mkdocs.themes': [
'nature = nature',
]
},
zip_safe=False
)
|