forked from unoconv/unoserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
63 lines (56 loc) · 1.35 KB
/
setup.cfg
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
62
63
[metadata]
name = unoserver
version = 1.5.dev0
description = A server for file conversions with Libre Office
long_description = file: README.rst, CONTRIBUTORS.rst, CHANGES.rst
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.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: MIT License
keywords = libreoffice,conversion,documents,uno,unoconv
author = Lennart Regebro
author_email = regebro@gmail.com
url = https://github.com/unoconv/unoserver
license = MIT
[options]
packages = unoserver
package_dir =
= src
include_package_data = True
zip_safe = False
install_requires =
setuptools
test_suite = tests
python_requires = >= 3.7
[options.entry_points]
console_scripts =
unoserver = unoserver.server:main
unoconvert = unoserver.converter:main
unocompare = unoserver.comparer:main
[options.extras_require]
devenv =
pytest
pytest-cov
black
flake8
pyroma
check-manifest
zest.releaser
[flake8]
max-line-length=120
[tool:pytest]
testpaths =
tests
[check-manifest]
ignore =
.pre-commit-config.yaml
tests/*
tests/documents/*
[bdist_wheel]
universal=0