diff --git a/dist/md2docx_python-0.3.2-py3-none-any.whl b/dist/md2docx_python-0.3.2-py3-none-any.whl new file mode 100644 index 0000000..6819802 Binary files /dev/null and b/dist/md2docx_python-0.3.2-py3-none-any.whl differ diff --git a/dist/md2docx_python-0.3.2.tar.gz b/dist/md2docx_python-0.3.2.tar.gz new file mode 100644 index 0000000..29092c9 Binary files /dev/null and b/dist/md2docx_python-0.3.2.tar.gz differ diff --git a/md2docx_python.egg-info/PKG-INFO b/md2docx_python.egg-info/PKG-INFO index 93a0611..ded2d20 100644 --- a/md2docx_python.egg-info/PKG-INFO +++ b/md2docx_python.egg-info/PKG-INFO @@ -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 @@ -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 diff --git a/setup.py b/setup.py index fda6934..dc390c2 100644 --- a/setup.py +++ b/setup.py @@ -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(),