-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (49 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
61 lines (49 loc) · 1.54 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
[project]
name = "nbs-livetable"
dynamic = ["version"]
description = "An implementation of LiveTable running over Kafka or ZMQ"
authors = [
{name = "Charles Titus", email = "ctitus@bnl.gov"}
]
requires-python = ">=3.8"
keywords = ["bluesky", "nsls-ii", "gui"]
dependencies = [
"qtpy",
"bluesky-kafka>=0.10.0",
"bluesky-widgets>=0.0.16",
"nslsii",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: Public Domain",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research"
]
[project.urls]
homepage = "https://github.com/xraygui/livetable"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[project.scripts]
kafka-livetable = "nbs_livetable.kafka_table:main"
qt-kafka-livetable = "nbs_livetable.QtKafkaTable:main"
zmq-livetable = "nbs_livetable.zmq_table:main"
qt-zmq-livetable = "nbs_livetable.QtZmqTable:main"
[project.entry-points."nbs_gui.tabs"]
kafka-table-tab = "nbs_livetable.QtKafkaTable:QtKafkaTableTab"
zmq-table-tab = "nbs_livetable.QtZmqTable:QtZMQTableTab"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.feature.build.dependencies]
hatch = "*"
[tool.pixi.feature.build.tasks]
build = "hatch build"
test-release = "hatch publish -r test"
[tool.pixi.feature.test.pypi-dependencies]
nbs-livetable = { path=".", editable = true }
[tool.pixi.environments]
build = { features = ["build"], solve-group = "default" }
test = { features = ["test"], solve-group = "default" }