-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (56 loc) · 1.46 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
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "libertem_ui"
version = "0.0.1"
license = {file = "LICENSE"}
description="Panel+Bokeh-based GUI Toolkit for LiberTEM"
readme="README.rst"
requires-python = ">=3.9"
authors = [
{"name" = "Matthew Bryan", email="[email protected]"},
]
keywords=["electron microscopy", "notebook", "gui"]
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Environment :: Web Environment',
'Environment :: Console',
]
dependencies = [
"libertem",
"libertem-live", # used for RecordUDF and SignalMonitorUDF
"numpy",
"scipy",
"pandas",
"scikit-image",
"tifffile",
"bokeh>=3.4.0",
"panel>=1",
"xarray",
"datashader",
"colorcet",
"humanize",
"bidict",
"StrEnum", # in stdlib from 3.11
"typing_extensions",
]
[project.optional-dependencies]
notebook = [
"notebook",
"ipython",
"ipywidgets",
]
[project.urls]
repository = "https://github.com/LiberTEM/LiberTEM-panel-ui"
[tool.setuptools.packages.find]
where = ["src"]