-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 910 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 910 Bytes
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
[project]
name = "pyodr"
version = "0.0.2"
description = "It's Android's first OpenOffice Document Reader for Python!"
classifiers = []
authors = [
{name = "Andreas Stefl"},
]
maintainers = [
{name = "Andreas Stefl", email="stefl.andreas@gmail.com"},
]
requires-python = ">=3.7"
readme = "README.md"
license = {file = "LICENSE.txt"}
[project.scripts]
pyodr = "pyodr.cli:main"
[project.urls]
homepage = "https://opendocument.app/"
source = "https://github.com/opendocument-app/OpenDocument.py"
download = "https://pypi.org/project/pyodr/#files"
tracker = "https://github.com/opendocument-app/OpenDocument.py/issues"
"release notes" = "https://github.com/opendocument-app/OpenDocument.py/releases"
[build-system]
requires = [
"setuptools>=42",
"wheel",
"ninja",
"cmake>=3.12",
"conan>=2.0.0",
"scikit-build-core",
"skbuild-conan",
]
build-backend = "setuptools.build_meta"