forked from BCDA-APS/tiled-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.15 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
[project]
name = "tiledspc"
version = "2024.7.0"
authors = [
{ name="Mark Wolfman", email="[email protected]" },
]
description = "Extra bits for running a tiled server for the Spectroscopy (SPC) group."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering",
"Topic :: System :: Hardware",
]
keywords = ["synchrotron", "xray", "tiled"]
dependencies = [
"databroker >=2.0.0b23",
"tiled[all] >=0.1.0a104",
"area-detector-handlers",
"event-model",
"suitcase",
"suitcase-mongo",
"h5py",
"pymongo",
"hdf5plugin",
"pillow",
"netCDF4",
"exdir",
]
[project.optional-dependencies]
dev = ["black", "pytest", "pytest-asyncio", "build", "twine", "flake8"]
[project.urls]
"Homepage" = "https://github.com/spc-group/tiled-server"
"Bug Tracker" = "https://github.com/spc-group/tiled-server/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"