forked from unoconv/unoserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (54 loc) · 1.61 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "unoserver"
version = "2.2.2.dev0"
description = "A server for file conversions with Libre Office"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Office/Business",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"License :: OSI Approved :: MIT License",
]
keywords = ["libreoffice", "conversion", "documents", "uno", "unoconv"]
authors = [{name = "Lennart Regebro", email = "[email protected]"}]
license = {text = "MIT"}
urls = {Homepage = "https://github.com/unoconv/unoserver"}
dynamic = ["readme"]
requires-python = ">= 3.8"
[project.optional-dependencies]
devenv = [
"pytest",
"pytest-cov",
"black",
"flake8",
"pyroma",
"check-manifest",
"zest.releaser",
]
[project.scripts]
unoserver = "unoserver.server:main"
unoconvert = "unoserver.client:converter_main"
unocompare = "unoserver.client:comparer_main"
[tool.setuptools]
packages = ["unoserver"]
package-dir = {"" = "src"}
include-package-data = true
zip-safe = false
[tool.setuptools.dynamic]
readme = {file = ["README.rst", "CONTRIBUTORS.rst", "CHANGES.rst"]}
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.check-manifest]
ignore = """
.pre-commit-config.yaml
tests/*
tests/documents/*"""