forked from Siphalor/mkdocs-custommill-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 969 Bytes
/
setup.py
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
27
28
29
30
31
32
33
34
35
36
37
import yaml
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_desc = fh.read()
with open("mkdocs.yml", "r") as yml:
conf = yaml.safe_load(yml.read())
version = conf['extra']['version'][1:]
setup(
name="mkdocs-custommill",
version=version,
url='https://github.com/Siphalor/mkdocs-custommill',
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Documentation',
'Topic :: Text Processing',
],
install_requires=[
'mkdocs',
],
license='MIT',
description='Improved and extended version of the Windmill theme',
long_description=long_desc,
long_description_content_type='text/markdown',
author='Siphalor',
author_email='dev@siphalor.de',
packages=find_packages(),
include_package_data=True,
entry_points={
'mkdocs.themes': [
'custommill = mkdocs_custommill',
]
},
zip_safe=False
)