-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.31 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
[project]
name = "wsp-jacquard"
dynamic = ["version"]
authors = [
{ name = "Brian Cheung", email = "brian.cheung@wsp.com" }
]
description = "JSON-based configuration handler for models"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
dependencies = []
requires-python = ">= 3.7"
[project.urls]
Homepage = "https://github.com/wsp-sag/wsp-jacquard"
Issues = "https://github.com/wsp-sag/wsp-jacquard/issues"
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"build>=1.2.2.post1,<2",
"twine>=6.0.1,<7",
"sphinx>=8.1.3,<9",
"sphinx-favicon>=1.0.1,<2",
"pydata-sphinx-theme>=0.16.1,<0.17",
"pytest>=8.3.4,<9"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_file = "src/wsp_jacquard/_version.py"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
pythonpath = "src"
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64", "osx-64", "win-64"]
[tool.pixi.pypi-dependencies]
wsp_jacquard = { path = ".", editable = true }
[tool.pixi.tasks]
[tool.pixi.environments]
dev = ["dev"]