-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (57 loc) · 1.9 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
62
63
64
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-scm",
"wheel",
"setuptools-git-versioning",
]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.8"
name = "qfieldcloud-sdk"
description = "The official QFieldCloud SDK and CLI."
authors = [
{ name = "Ivan Ivanov", email = "[email protected]" },
]
license = { file = "LICENSE" }
keywords = ["QFieldCloud", "QField", "QGIS", "CI", "SDK", "CLI"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: GIS",
]
dynamic = ["dependencies", "readme", "version"]
[project.optional-dependencies]
docs = [
"mkdocstrings[python]~=0.25",
"mkdocs-click~=0.8.1",
"mkdocs-material~=9.5.17",
"fancyboxmd~=1.1"
]
[project.scripts]
qfieldcloud-cli = "qfieldcloud_sdk.cli:cli"
[project.urls]
homepage = "https://github.com/opengisch/qfieldcloud-sdk-python"
documentation = "https://github.com/opengisch/qfieldcloud-sdk-python"
repository = "https://github.com/opengisch/qfieldcloud-sdk-python"
tracker = "https://github.com/opengisch/qfieldcloud-sdk-python/issues"
[tool.setuptools]
packages = ["qfieldcloud_sdk"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
dependencies = { file = ["requirements.txt"] }
[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dev_template = "{tag}"
dirty_template = "{tag}"