-
Notifications
You must be signed in to change notification settings - Fork 52
/
pyproject.toml
84 lines (77 loc) · 2.54 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = 'fabio'
dynamic = ['version',]
license = {file = 'copyright'}
requires-python = '>=3.7'
readme = 'README.rst'
description = 'FabIO is an I/O library for images produced by 2D X-ray detectors and written in Python'
#keyword = ['image', 'detector']
authors = [
{ name = 'Henning Sorensen', email = 'osho@fysik.dtu.dk' },
{ name = 'Erik Knudsen' },
{ name = 'Jonathan P. Wright', email= 'wright@esrf.fr'},
{ name = 'Regis Perdreau'},
{ name = 'Jérôme Kieffer', email = 'jerome.kieffer@esrf.fr'},
{ name = 'Gael Goret'},
{ name = 'Brian Pauw'},
{ name = 'Valentin Valls', email = 'valentin.valls@esrf.fr'},
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
"License :: OSI Approved :: MIT License",
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Cython',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
]
dependencies = [
'numpy',
'h5py',
'hdf5plugin',
'lxml',
'pillow'
]
[build-system]
build-backend = 'mesonpy'
requires = [
'meson-python>=0.11',
"meson>=0.64; platform_system=='Windows'",
"meson; platform_system!='Windows'",
'ninja',
'wheel',
'Cython>=0.29',
'pyproject-metadata>=0.5.0',
'tomli>=1.0.0'
]
[project.optional-dependencies]
gui = [ "pyqt5", "matplotlib" ]
all = ["pyqt5", "matplotlib"]
[project.urls]
homepage = 'http://www.silx.org'
documentation = 'http://www.silx.org/doc/fabio/latest/'
source = 'https://github.com/silx-kit/fabio'
download = 'https://github.com/silx-kit/fabio/releases'
tracker = 'https://github.com/silx-kit/fabio/issues'
[project.scripts]
densify_Bragg = 'fabio.app.densify:main'
eiger2cbf = 'fabio.app.eiger2cbf:main'
eiger2crysalis = 'fabio.app.eiger2crysalis:main'
fabio-convert = 'fabio.app.convert:main'
hdf2neggia = 'fabio.app.hdf2neggia:main'
[project.gui-scripts]
fabio_viewer = 'fabio.app.viewer:main'
[tool.cibuildwheel]
test-requires = ["pyqt5", "matplotlib"]