-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (51 loc) · 1.96 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=67",
"setuptools_scm[toml]>=7.1"
]
[project]
name = "qprocessing"
dynamic = [
"version", # retrieve package version from git tags
"dependencies", # retrieve package dependencies from requirements.txt
"optional-dependencies" # retrieve development dependencies from requirements_dev.txt
]
authors = [ { name = "Gis3w snc", email = "[email protected]" } ]
description = "G3W-ADMIN plugin for use the processing features of QGIS application-"
readme = "README.md"
license = { text = "Mozilla Public License 2.0 (MPL 2.0)" }
classifiers = [
"Development Status :: 3 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
# requires-python = ">=3.10"
[project.urls]
"Homepage" = "https://github.com/g3w-suite/g3w-admin-processing"
"Bug Tracker" = "https://github.com/g3w-suite/g3w-admin-processing/issues"
[tool.setuptools]
# Manual package discovery
packages = ["qprocessing"]
package-dir = { qprocessing = "qprocessing" }
# Custom package discovery
# [tool.setuptools.packages]
# find = { }
# https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#automatic-discovery
#
# NB: see also: MANIFEST.in
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.dynamic.optional-dependencies]
dev = { file = ["requirements_dev.txt"] }
[tool.setuptools_scm]
fallback_version = "v1.2.1-beta.0"
write_to = "_version.py" # hardcode version number in a file
#
# Or alternatively retrieve it at runtime:
# https://github.com/pypa/setuptools_scm/#retrieving-package-version-at-runtime