-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
29 lines (26 loc) · 901 Bytes
/
pyproject.toml
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
[project]
name = "msoffice2pdf"
version = "1.0.0"
description = "This package aims to convert Office file types to PDF using Microsoft Office or LibreOffice."
authors = [
{name = "Robson Soares de Lima", email = "[email protected]"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.6"
keywords = ["msoffice", "pdf", "convert", "libreoffice", ".doc", ".docx", ".xls", ".xlsx", ".ppt", ".pptx", ".txt", ".xml"]
classifiers = [
"Topic :: Software Development",
"Environment :: Win32 (MS Windows)",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[build-system]
requires = [
"setuptools >= 35.0.2",
"setuptools_scm >= 2.0.0, <3",
"comtypes >= 1.1.10"
]
build-backend = "setuptools.build_meta"