-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
70 lines (64 loc) · 2.53 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
[project]
name = 'dahu'
dynamic = ['version',]
license = {file = 'LICENSE'}
requires-python = '>=3.7'
readme = 'README.rst'
description = '"Python lightweight, plugin based, data analysis engine"'
authors = [
{ name = 'Jérôme Kieffer', email = '[email protected]'},
]
# double check classifiers on https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers = ["Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Cython",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
'numpy>=1.10',
]
[build-system]
build-backend = 'mesonpy'
requires = [
'meson-python>=0.11',
"meson>=0.64; platform_system=='Windows'",
"meson>=0.60; platform_system!='Windows'",
'ninja',
'wheel',
'oldest-supported-numpy',
'pyproject-metadata>=0.5.0',
"tomli>=1.0.0; python_version < '3.12'"
]
[project.urls]
homepage = 'http://www.silx.org'
documentation = 'http://www.silx.org/doc/dahu/latest/'
source = 'https://github.com/kif/dahu'
download = 'https://github.com/kif/dahu/releases'
tracker = 'https://github.com/kif/dahu/issues'
[project.scripts]
dahu_server = 'dahu.app.tango_server:main'
dahu-reprocess = 'dahu.app.reprocess:main'
dahu-register = 'dahu.app.tango_register:main'
[tool.cibuildwheel]
# Skip 32-bit builds and PyPy
skip = ["*-win32", "*-manylinux_i686", "pp*", "*musllinux*"]