forked from byrnereese/mkdocs-bootstrap4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 667 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 667 Bytes
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.1.5'
setup(
name="mkdocs-bootstrap4",
version=VERSION,
url='https://github.com/byrnereese/mkdocs-bootstrap4/',
license='MIT',
description='Bootstrap4 theme for MkDocs',
author='Byrne Reese',
author_email='byrne@majordojo.com',
packages=find_packages(),
include_package_data=True,
install_requires=[
'mkdocs>=1.1',
'mkdocs-git-committers-plugin>=0.2.0'
],
python_requires='>=2.7.9,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
entry_points={
'mkdocs.themes': [
'bootstrap4 = mkdocs_bootstrap4',
]
},
zip_safe=False
)