-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
47 lines (37 loc) · 1.16 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
[project]
authors = [{name = "FNNDSC", email = "[email protected]"}]
dependencies = []
description = "ChRIS compute resources Process and File CONtroller"
name = "pfcon"
requires-python = ">= 3.11"
version = "0.0.0+unknown"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "linux-aarch64"]
[tool.pixi.pypi-dependencies]
pfcon = { path = ".", editable = true }
[tool.pixi.feature.build.tasks]
build = "hatch build -t wheel"
[tool.pixi.feature.prod.tasks]
postinstall-production = "pip install --no-deps --disable-pip-version-check --no-cache-dir dist/pfcon-*.whl"
[tool.pixi.dependencies]
flask = "2.3.*"
flask-restful = "0.3.10.*"
requests = "2.31.*"
keystoneauth1 = "4.3.*"
python-keystoneclient = "4.2.*"
python-swiftclient = "4.4.*"
pyjwt = "2.8.*"
environs = "9.5.*"
[tool.pixi.feature.test.dependencies]
pytest = "7.4.*"
[tool.pixi.feature.prod.dependencies]
gunicorn = "21.2.*"
[tool.pixi.feature.build.dependencies]
hatch = "*"
[tool.pixi.environments]
local = { features = ["test", "build"], solve-group = "default" }
prod = { features = ["prod"], solve-group = "default" }