-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (78 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
86 lines (78 loc) · 2.27 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
build-backend = 'scikit_build_core.build'
requires = [
'scikit-build-core>=0.10.7',
'wheel>=0.45.1',
'pybind11>=2.11.1',
]
[project]
dependencies = [
'numpy>=1.23',
'packaging>=20.0'
]
description = 'Python bindings for Atlas: a ECMWF library for parallel data-structures'
name = 'atlas4py'
version = '0.41.1.dev2' # <major>.<minor>.<patch>.dev<dev> : <atlas.major>.<atlas.minor>.<atlas.patch>.dev<atlas4py.dev>
license = {text = "Apache License 2.0"}
readme = {file = 'README.md', content-type = 'text/markdown'}
authors = [{email = 'willem.deconinck@ecmwf.int'}, {name = 'Willem Deconinck'}]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
[project.urls]
repository = 'https://github.com/GridTools/atlas4py'
[project.optional-dependencies]
test = ['pytest', 'pytest-cache']
[tool.scikit-build]
minimum-version = '0.5'
build-dir="build/{wheel_tag}"
cmake.minimum-version = '3.25'
cmake.verbose = true
cmake.source-dir = "src/atlas4py"
cmake.build-type = "Release"
cmake.args = [
"-DATLAS4PY_ECBUILD_VERSION=3.9.1",
"-DATLAS4PY_ECKIT_VERSION=1.28.6",
"-DATLAS4PY_ATLAS_VERSION=0.41.1"
]
wheel.expand-macos-universal-tags = true
wheel.install-dir = "atlas4py"
wheel.packages = []
wheel.license-files = []
[tool.black]
line-length = 99
target_version = ['py36', 'py37', 'py38']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.gt_cache
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.bumpversion]
# To update atlas4py dev version:
# pip install bump-my-version
# bump-my-version bump dev
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\.dev(?P<dev>\\d+))?"
serialize = ["{major}.{minor}.{patch}.dev{dev}"]
[[tool.bumpversion.files]]
filename = "pyproject.toml"