-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 936 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 936 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
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "streamvis"
dynamic = ["version"] # version will be read from __init__.py
requires-python = ">=3.8"
dependencies = [
"numba",
"numpy <2", # TODO: bokeh/2.1.x breaks with numpy>=2.0
"bokeh ~=2.1",
"jungfrau_utils ~=3.0",
"pyzmq",
"pillow >=4.3",
"colorcet",
"bottleneck",
"jinja2 <3.1", # TODO: bokeh/2.1.x breaks with jinja/3.1.0
"cbor2",
]
authors = [
{name = "Paul Scherrer Institute"}
]
maintainers = [
{name = "Ivan Usov", email = "ivan.usov@psi.ch"}
]
description = "Live stream visualization server for detectors at PSI."
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://github.com/paulscherrerinstitute/streamvis"
[tool.hatch.build.targets.wheel]
include = ["streamvis"]
[tool.hatch.version]
path = "streamvis/__init__.py"