Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.2.0 #34

Merged
merged 2 commits into from
Aug 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion mkautodoc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .extension import MKAutoDocExtension, makeExtension


__version__ = "0.1.0"
__version__ = "0.2.0"
__all__ = ["MKAutoDocExtension", "makeExtension"]
2 changes: 1 addition & 1 deletion mkautodoc/extension.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from markdown import Markdown
from markdown.extensions import Extension
from markdown.blockprocessors import BlockProcessor
from markdown.util import etree
from xml.etree import ElementTree as etree
import importlib
import inspect
import re
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
markdown
-e .

# Testing
black
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_packages(package):
author='Tom Christie',
author_email='tom@tomchristie.com',
packages=get_packages('mkautodoc'),
install_requires=[],
install_requires=["Markdown"],
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down