-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpyproject.toml
67 lines (62 loc) · 2.01 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
[build-system]
build-backend = 'scikit_build_core.build'
requires = [
'cmake>=3.25',
'numpy >= 1.23',
'scikit-build-core>=0.10.7',
'wheel>=0.45.1',
]
[project]
dependencies = [
'numpy>=1.23',
'packaging>=20.0'
]
description = 'Serialbox - Serialization Library for C, C++, Fortran and Python'
name = 'serialbox4py'
# note: version should not be changed manually, use bump-my-version instead:
# install: pip install bump-my-version
# example: bump-my-version bump patch
version = '2.6.2'
license = {text = "BSD-3 License"}
readme = {file = 'README.md', content-type = 'text/markdown'}
authors = [{email = '[email protected]'}, {name = 'ETH Zurich'}]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'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 :: 3.13',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: File Formats',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Testing',
'Topic :: System :: Archiving'
]
[project.urls]
repository = 'https://github.com/GridTools/serialbox'
[project.optional-dependencies]
test = ['pytest', 'pytest-cache']
[tool.scikit-build]
minimum-version = '0.5'
cmake.minimum-version = '3.25'
cmake.verbose = true
cmake.source-dir = "."
cmake.build-type = "Release"
cmake.args = [
"-DSERIALBOX_ENABLE_FORTRAN=false",
"-DSERIALBOX_ENABLE_SDB=false",
"-DSERIALBOX_ASYNC_API=false"
]
wheel.expand-macos-universal-tags = true
wheel.install-dir = "serialbox"
wheel.packages = []
wheel.license-files = []