Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added dist/md2docx_python-0.3.2-py3-none-any.whl
Binary file not shown.
Binary file added dist/md2docx_python-0.3.2.tar.gz
Binary file not shown.
9 changes: 6 additions & 3 deletions md2docx_python.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Metadata-Version: 2.1
Name: md2docx-python
Version: 0.3.1
Version: 0.3.2
Summary: Markdown to Word Converter.
Simple and straight forward Python utility
that converts a Markdown file (`.md`) to a Microsoft
Word document (`.docx`). It supports basic Markdown
Word document (`.docx`). It supports multiple Markdown
elements, including headings, bold and italic text,
and both unordered and ordered lists.
both unordered and ordered lists and many more.
Home-page: https://github.com/shloktech/md2docx-python
Author: Shlok Tadilkar
Author-email: shloktadilkar@gmail.com
Expand Down Expand Up @@ -131,5 +131,8 @@ Description: # Markdown to Word Converter
For any queries please start a discussion I will be happy to answer your queries :)

Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9.0
Description-Content-Type: text/markdown
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,22 @@

setup(
name='md2docx_python',
version='0.3.1',
version='0.3.2',
url='https://github.com/shloktech/md2docx-python',
author='Shlok Tadilkar',
author_email='shloktadilkar@gmail.com',
license='MIT',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
],
description="""Markdown to Word Converter.
Simple and straight forward Python utility
that converts a Markdown file (`.md`) to a Microsoft
Word document (`.docx`). It supports basic Markdown
Word document (`.docx`). It supports multiple Markdown
elements, including headings, bold and italic text,
and both unordered and ordered lists.""",
both unordered and ordered lists and many more.""",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
Expand Down
Loading