diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e66500a --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +from setuptools import setup, find_packages +from os import path +working_directory = path.abspath(path.dirname(__file__)) + +with open(path.join(working_directory, 'README.md'), encoding='utf-8') as f: + long_description = f.read() + +setup( + name='md2docx-python', + version='0.1.0', + url='https://github.com/shloktech/md2docx-python', + author='Shlok Tadilkar', + author_email='shloktadilkar@gmail.com', + 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 + elements, including headings, bold and italic text, + and both unordered and ordered lists.""", + long_description=long_description, + long_description_content_type='text/markdown', + packages=find_packages(), + install_requires=['markdown', 'python-docx', 'beautifulsoup4'], +) + +