-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (42 loc) · 1.21 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
# SPDX-FileCopyrightText: 2024 Idiap Research Institute <contact@idiap.ch>
#
# SPDX-License-Identifier: BSD-3-Clause
[project]
authors = [
{name = "François Marelli", email = "francois.marelli@idiap.ch"},
{name = "Michael Liebling", email = "michael.liebling@idiap.ch"},
{name = "Daniel Carron", email = "daniel.carron@idiap.ch"},
]
dependencies = [
"cbi-toolbox @ git+https://github.com/idiap/cbi_toolbox",
"click",
"numpy<2.0",
"Pillow",
"PySide6",
"arduino-pytwister @ git+https://github.com/idiap/arduino_pytwister",
]
name = "demo_opt"
description = "Demo application for Optical Projection Tomography"
requires-python = "<3.10"
version = "1.0.0"
[project.optional-dependencies]
qa = [
"reuse",
"pre-commit",
]
# Needed to add git dependencies
[tool.hatch.metadata]
allow-direct-references = true
[project.scripts]
demo-opt = "demo_opt.scripts.cli:cli"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64"]
[tool.pixi.environments]
default = { features = ["self"] }
[tool.pixi.feature.self.pypi-dependencies]
demo_opt = { path = ".", editable = true }
[tool.pixi.tasks]