-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (47 loc) · 1.21 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
[build-system]
requires = ["setuptools>=42", "setuptools_scm[toml]>=6.0.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mxio"
description = "A Simple X-ray Area Detector Data IO Library"
readme = "README.md"
dynamic = ["version"]
license = { text = "MIT" }
authors = [
{ name = "Michel Fodje", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"hdf5plugin",
"parsefire",
"h5py",
"opencv-python",
"python-magic",
"pytz",
"pyyaml",
"numpy",
"iso8601",
"lz4",
"pyzmq",
"setuptools-scm"
]
[project.urls]
homepage = "https://github.com/michel4j/mxio"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
[project.entry-points."mxio.plugins"]
CBF = "mxio.formats.cbf"
HDF5 = "mxio.formats.hdf5"
MARCCD = "mxio.formats.marccd"
RAXIS = "mxio.formats.raxis"
SMV = "mxio.formats.smv"
NEXUS = "mxio.formats.nexus"
MAR345 = "mxio.formats.mar345"