-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (24 loc) · 1011 Bytes
/
pyproject.toml
File metadata and controls
30 lines (24 loc) · 1011 Bytes
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
[project]
authors = [{name = "Shekar V", email = "vshekar1@bnl.gov"}]
dependencies = ["tiled[client]>=0.2.0", "bluesky-tiled-plugins>=2.0.2,<3"]
name = "lambda-tiled-plugin"
requires-python = ">= 3.11"
version = "0.1.0"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project.entry-points."tiled.special_client"]
CatalogOfLambdaExperiments = "lambda_tiled_plugin.clients.lambda:CatalogOfLambdaExperiments"
LambdaExperiment = "lambda_tiled_plugin.clients.lambda:LambdaExperiment"
MXLambdaExperiment = "lambda_tiled_plugin.clients.lambda:MXLambdaExperiment"
SAXSLambdaExperiment = "lambda_tiled_plugin.clients.lambda:SAXSLambdaExperiment"
CryoEMLambdaExperiment = "lambda_tiled_plugin.clients.lambda:CryoEMLambdaExperiment"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["osx-arm64"]
[tool.pixi.pypi-dependencies]
lambda_tiled_plugin = { path = ".", editable = true }
[tool.pixi.tasks]
[tool.pixi.dependencies]
fastapi = ">=0.135.1,<0.136"
ipython = ">=9.10.0,<10"