Skip to content

Commit

Permalink
prototype of so-only wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
tmi committed Dec 12, 2024
1 parent b74bc1e commit e5b1aae
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
25 changes: 25 additions & 0 deletions python_wrapper/buildconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# (C) Copyright 2024- ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.

# to be source'd by wheelmaker's compile.sh *and* wheel-linux.sh
# NOTE replace the whole thing with pyproject.toml? Less powerful, and quaint to use for sourcing ecbuild invocation
# TODO we duplicate information -- pyproject.toml's `name` and `packages` are derivable from $NAME and must stay consistent

NAME="eccodes"

# TODO solve the libpng, libjpg, libaec problem
CMAKE_PARAMS1="-DENABLE_PNG=0 -DENABLE_JPG=0 -DENABLE_AEC=0 -DENABLE_JPG_LIBJASPER=0 -DENABLE_JPG_LIBOPENJPEG=0"
# -DOPENJPEG_DIR=$TOPDIR/install \
CMAKE_PARAMS2="-DENABLE_NETCDF=0"
CMAKE_PARAMS3="-DENABLE_EXAMPLES=0 -DENABLE_PYTHON=0 -DENABLE_BUILD_TOOLS=0 -DENABLE_INSTALL_ECCODES_DEFINITIONS=0 -DENABLE_INSTALL_ECCODES_SAMPLES=0"
CMAKE_PARAMS4="-DENABLE_ECCODES_THREADS=1 -DENABLE_MEMFS=1"
CMAKE_PARAMS="$CMAKE_PARAMS1 $CMAKE_PARAMS2 $CMAKE_PARAMS3 $CMAKE_PARAMS4"

PYPROJECT_DIR="python_wrapper"
# TODO add eckit once the dependency is in place
DEPENDENCIES='[]'
5 changes: 5 additions & 0 deletions python_wrapper/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[metadata]
description = "eccodes"
long_description = file: README.md
long_description_content_type = text/markdown
author = file: AUTHORS
2 changes: 2 additions & 0 deletions python_wrapper/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from setup_utils import plain_setup
plain_setup()

0 comments on commit e5b1aae

Please sign in to comment.