-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 903 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
from setuptools import setup, find_packages
setup(
name='mkdocs-plugin-rzk',
version='0.1.4',
description='A MkDocs plugin for Literate Rzk',
long_description='This plugin automates the generation of SVG renderings for code snippets in Literate Rzk Markdown files rendered using MkDocs.',
keywords='mkdocs',
author='Abdelrahman Abounegm',
author_email='[email protected]',
license='MIT',
project_urls={
'Source': 'https://github.com/rzk-lang/mkdocs-plugin-rzk',
'Release notes': 'https://github.com/rzk-lang/mkdocs-plugin-rzk/blob/master/CHANGELOG.md',
'Tracker': 'https://github.com/rzk-lang/mkdocs-plugin-rzk/issues',
},
install_requires=[
'mkdocs>=1.4.0'
],
packages=find_packages(),
entry_points = {
'mkdocs.plugins': [
'rzk = rzk.generate_svgs:RzkPlugin',
]
}
)