-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
46 lines (44 loc) · 1.81 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
VERSION = '1.0.4'
setup(
name = 'html-for-docx',
version = VERSION,
description = 'Convert HTML to Docx easily and fastly',
long_description = README,
license = 'MIT',
packages = find_packages(),
python_requires = '>=3.7',
author = 'Diogo Fernandes',
author_email = '[email protected]',
platforms = ['any'],
include_package_data = True,
keywords = ['html', 'docx', 'office', 'word', 'convert', 'transform'],
zip_safe = False,
url = 'https://github.com/dfop02/html4docx',
project_urls = {
"Changelog": "https://github.com/dfop02/html4docx/blob/master/HISTORY.rst",
"Bug Tracker": "https://github.com/dfop02/html4docx/issues",
"Repository": "https://github.com/dfop02/html4docx"
},
download_url = f'https://github.com/dfop02/html4docx/archive/{VERSION}.tar.gz',
classifiers = [
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
],
install_requires = [
'python-docx>=1.1.0',
'beautifulsoup4>=4.12.2'
]
)