-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (57 loc) · 2.11 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
##############################################################################
# blosc2_grok: Grok (JPEG2000 codec) plugin for Blosc2
#
# Copyright (c) 2023 The Blosc Development Team <[email protected]>
# https://blosc.org
# License: GNU Affero General Public License v3.0 (see LICENSE.txt)
##############################################################################
[build-system]
requires = ["scikit-build-core", "blosc2"]
build-backend = "scikit_build_core.build"
[project]
name = "blosc2_grok"
version = "0.3.4.dev0"
readme = "README.md"
authors = [
{name = "Blosc Development Team", email = "[email protected]"},
]
description = "Grok (JPEG2000 codec) plugin for Blosc2."
keywords = ["plugin", "blosc2"]
license = {text = "GNU Affero General Public License version 3"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: C",
"Programming Language :: C++",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Compression",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
]
dependencies = [
# python-blosc2 is not a strict runtime dependency, but it is handy
"blosc2"
]
[project.optional-dependencies]
h5py-test = [
"pytest", # to run tests
]
[project.urls]
Homepage = "https://github.com/Blosc/blosc2_grok"
Issues = "https://github.com/Blosc/blosc2_grok/issues"
[tool.setuptools]
platforms = [ "any" ]
zip-safe = false
[tool.cibuildwheel]
skip = "*-manylinux_i686 *_ppc64le *_s390x *-musllinux*"
# Build using the manylinux image to ensure manylinux_2_28 wheels are produced
# grok needs at least GCC 11, and manylinux_2_28 is the first manylinux image
# to include GCC 11 (actually, GCC 12)
manylinux-x86_64-image = "manylinux_2_28"
manylinux-aarch64-image = "manylinux_2_28"
[tool.scikit-build]
# Python ABI compatibility should not be a problem for Blosc plugins
wheel.py-api = "py3"