-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 1.01 KB
/
setup.py
File metadata and controls
28 lines (24 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.3.1',
url='https://github.com/shloktech/md2docx-python',
author='Shlok Tadilkar',
author_email='shloktadilkar@gmail.com',
license='MIT',
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'],
python_requires=">=3.9.0",
)