-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.71 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
# Blosc - Blocked Shuffling and Compression Library
#
# Copyright (C) 2021 The Blosc Developers <[email protected]>
# https://blosc.org
# License: BSD 3-Clause (see LICENSE.txt)
#
# See LICENSE.txt for details about copyright and rights to use.
[build-system]
#requires = ["scikit-build-core", "blosc2@git+https://github.com/Blosc/python-blosc2#egg=main"]
requires = ["scikit-build-core", "blosc2"]
build-backend = "scikit_build_core.build"
[project]
name = "blosc2_plugin_example"
version = "0.0.1"
dynamic = ["readme"]
authors = [
{name = "Blosc Development Team", email = "[email protected]"},
]
description = "My package description"
keywords = ["plugin", "blosc2"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: C",
]
dependencies = [
"blosc2"
]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools]
platforms = [ "any" ]
zip-safe = false
[tool.scikit-build]
# This activates verbose builds
cmake.verbose = true
# This controls the CMake build type
cmake.build-type = "Release"
# The licence file(s) to include in the wheel metadata directory.
wheel.license-files = ["LICEN[CS]E*", "COPYING*", "NOTICE*", "AUTHORS*"]
[tool.cibuildwheel]
#skip = "cp36-* cp37-* cp38-* cp39-* cp310-* pp37-* pp38-* pp39-* pp310-* *-manylinux_i686 *_ppc64le *_s390x *-musllinux*"
skip = "cp36-* cp37-* pp37-* *-manylinux_i686 *_ppc64le *_s390x *-musllinux*"