-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (25 loc) · 896 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
import os.path
import setuptools
def read(name):
mydir = os.path.abspath(os.path.dirname(__file__))
return open(os.path.join(mydir, name)).read()
setuptools.setup(
name="mkdocs-diagrams",
version="1.0.0",
packages=["mkdocs_diagrams"],
url="https://github.com/zoni/mkdocs-diagrams",
license="MIT",
author="Nick Groenen",
author_email="[email protected]",
description="MkDocs plugin to render Diagrams files",
long_description=read("README.md"),
long_description_content_type="text/markdown",
install_requires=["mkdocs", "diagrams"],
entry_points={"mkdocs.plugins": ["diagrams = mkdocs_diagrams:DiagramsPlugin",]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
)