-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1.18 KB
/
setup.py
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
27
28
29
30
31
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.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 multiple Markdown
elements, including headings, bold and italic text,
both unordered and ordered lists and many more.""",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=['markdown', 'python-docx', 'beautifulsoup4'],
python_requires=">=3.9.0",
)