-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.43 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
[build-system]
requires = [
# meson-python needs to be pinned on windows to work around
# https://github.com/mesonbuild/meson-python/issues/525
'meson-python',
'meson',
'wheel',
]
build-backend= 'mesonpy'
[project]
name = 'pandas_mask'
dynamic = ['version']
description = 'Bitmask implementation for pandas which has select NumPy compatability'
authors = [
{ name = 'Will Ayd', email='[email protected]' },
]
license = {file = 'LICENSE'}
requires-python = '>=3.9'
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering'
]
[tool.cibuildwheel]
build = "cp39-*64 cp310-*64 cp311-*64 cp312-*64"
skip = "*musllinux*"
test-command = "pytest {project}/tests"
test-requires = ["pytest", "numpy"]
[tool.meson-python.args]
install = ['--skip-subprojects']
[tool.cibuildwheel.windows]
before-build = "pip install delvewheel"
repair-wheel-command = "delvewheel repair --add-path C:/Windows/System32 -w {dest_dir} {wheel}"