-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (61 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
73 lines (61 loc) · 1.74 KB
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
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "avaframeconnector"
description = "QGIS Plugin - Connects to AvaFrame"
readme = "README.md"
dynamic = ["version"]
license = { text = "GPL-2.0-or-later" }
authors = [
{ name = "AvaFrame Team", email = "felix@avaframe.org" }
]
urls = { Homepage = "http://avaframe.org", Repository = "https://github.com/OpenNHM/QGisAF" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
requires-python = ">=3.9,<3.14"
# Setuptools
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["docs*", "tests*"]
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
local_scheme = "node-and-date"
# Black
[tool.black]
line-length = 109
# PIXI setup
[tool.pixi.workspace]
channels = ["https://prefix.dev/conda-forge"]
platforms = ["linux-64"]
#platforms = ["linux-64", "win-64", "osx-64"]
[tool.pixi.dependencies]
python = "<3.14"
setuptools = "*"
setuptools-scm = "*"
[tool.pixi.pypi-dependencies]
pb_tool = "*"
# Feature dev
[tool.pixi.feature.dev.dependencies]
qgis = ">=3.22"
pixi-pycharm = "*"
black = "*"
[tool.pixi.feature.dev.pypi-dependencies]
avaframe = { path = "../AvaFrame/", editable = true }
# Feature qgis
[tool.pixi.feature.qgis.dependencies]
qgis = ">=3.22"
# Environments
[tool.pixi.environments]
default = { features = ["dev"], solve-group = "default" }
dev = ["dev"]
qgis = ["qgis", "dev"]