-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (29 loc) · 870 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
from setuptools import setup, find_packages
VERSION = '0.1.28'
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="mkdocs-ringcentral",
version=VERSION,
url='https://github.com/byrnereese/mkdocs-ringcentral/',
description='RingCentral theme for MkDocs',
long_description=long_description,
long_description_content_type="text/markdown",
author='Byrne Reese',
author_email='byrne.reese@ringcentral.com',
packages=find_packages(),
include_package_data=True,
install_requires=[
'mkdocs>=1.1',
'mkdocs-ringcentral-api-index>=0.1.6',
'mkdocs-moonstone>=0.2.0',
'mdx-include>=0.4.1'
],
python_requires='>=3.0',
entry_points={
'mkdocs.themes': [
'ringcentral = mkdocs_ringcentral',
]
},
zip_safe=False
)