-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 540 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 540 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
VERSION = "1.2.0"
setup(
name="mkdocs-cinder",
version=VERSION,
url="https://github.com/chrissimpkins/cinder",
license="MIT",
description="A clean responsive theme for the MkDocs static documentation site generator",
author="Christopher Simpkins",
author_email="chris@sourcefoundry.org",
packages=find_packages(),
include_package_data=True,
entry_points={
"mkdocs.themes": [
"cinder = cinder",
]
},
zip_safe=False,
)