Skip to content

Commit 24e6573

Browse files
authored
Merge pull request #22 from shloktech/polishing-of-documentations
Polishing of documents
2 parents 4661a01 + 2ef5f65 commit 24e6573

4 files changed

Lines changed: 14 additions & 6 deletions

File tree

5.52 KB
Binary file not shown.

dist/md2docx_python-0.3.2.tar.gz

4.38 KB
Binary file not shown.

md2docx_python.egg-info/PKG-INFO

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Metadata-Version: 2.1
22
Name: md2docx-python
3-
Version: 0.3.1
3+
Version: 0.3.2
44
Summary: Markdown to Word Converter.
55
Simple and straight forward Python utility
66
that converts a Markdown file (`.md`) to a Microsoft
7-
Word document (`.docx`). It supports basic Markdown
7+
Word document (`.docx`). It supports multiple Markdown
88
elements, including headings, bold and italic text,
9-
and both unordered and ordered lists.
9+
both unordered and ordered lists and many more.
1010
Home-page: https://github.com/shloktech/md2docx-python
1111
Author: Shlok Tadilkar
1212
Author-email: shloktadilkar@gmail.com
@@ -131,5 +131,8 @@ Description: # Markdown to Word Converter
131131
For any queries please start a discussion I will be happy to answer your queries :)
132132

133133
Platform: UNKNOWN
134+
Classifier: License :: OSI Approved :: MIT License
135+
Classifier: Programming Language :: Python :: 3.9
136+
Classifier: Operating System :: OS Independent
134137
Requires-Python: >=3.9.0
135138
Description-Content-Type: text/markdown

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,22 @@
77

88
setup(
99
name='md2docx_python',
10-
version='0.3.1',
10+
version='0.3.2',
1111
url='https://github.com/shloktech/md2docx-python',
1212
author='Shlok Tadilkar',
1313
author_email='shloktadilkar@gmail.com',
1414
license='MIT',
15+
classifiers=[
16+
"License :: OSI Approved :: MIT License",
17+
"Programming Language :: Python :: 3.9",
18+
"Operating System :: OS Independent",
19+
],
1520
description="""Markdown to Word Converter.
1621
Simple and straight forward Python utility
1722
that converts a Markdown file (`.md`) to a Microsoft
18-
Word document (`.docx`). It supports basic Markdown
23+
Word document (`.docx`). It supports multiple Markdown
1924
elements, including headings, bold and italic text,
20-
and both unordered and ordered lists.""",
25+
both unordered and ordered lists and many more.""",
2126
long_description=long_description,
2227
long_description_content_type='text/markdown',
2328
packages=find_packages(),

0 commit comments

Comments
 (0)