https://gitlab.opengeosys.org/ogs/ogs.git
Revision 814de7e33539b02d6554e46a99a777a63cbb727b authored by Dmitry Yu. Naumov on 30 January 2023, 20:02:55 UTC, committed by Dmitry Yu. Naumov on 30 January 2023, 20:02:55 UTC
[T/M] Two solid materials extrapolation

Closes #3054 and #3063

See merge request ogs/ogs!4447
2 parent s 279cafb + 0bcabf5
Raw File
Tip revision: 814de7e33539b02d6554e46a99a777a63cbb727b authored by Dmitry Yu. Naumov on 30 January 2023, 20:02:55 UTC
Merge branch 'MultipleSolidMaterials' into 'master'
Tip revision: 814de7e
setup.py
from skbuild import setup
from setuptools import find_packages

import os
import platform
import sys

sys.path.append(os.path.join("Applications", "Python"))
from ogs._internal.provide_ogs_cli_tools_via_wheel import binaries_list

console_scripts = []
for b in binaries_list:
    console_scripts.append(f"{b}=ogs._internal.provide_ogs_cli_tools_via_wheel:{b}")

cmake_preset = "wheel"
if platform.system() == "Windows":
    cmake_preset += "-win"

from pathlib import Path

this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

# setuptools_scm config local_scheme via env var SETUPTOOLS_SCM_LOCAL_SCHEME:
scm_local_scheme = "node-and-date"
if "SETUPTOOLS_SCM_LOCAL_SCHEME" in os.environ:
    local_scheme_values = [
        "node-and-date",
        "node-and-timestamp",
        "dirty-tag",
        "no-local-version",
    ]
    if os.environ["SETUPTOOLS_SCM_LOCAL_SCHEME"] in local_scheme_values:
        scm_local_scheme = os.environ["SETUPTOOLS_SCM_LOCAL_SCHEME"]

cmake_args = [f"--preset {cmake_preset}", "-B ."]
if "SKBUILD_GENERATOR" in os.environ:
    cmake_args.extend(["-G", os.environ["SKBUILD_GENERATOR"]])

setup(
    name="ogs",
    description="OpenGeoSys Python Module",
    long_description=long_description,
    long_description_content_type="text/markdown",
    author="OpenGeoSys Community",
    license="BSD-3-Clause",
    packages=find_packages(where="Applications/Python"),
    package_dir={"": "Applications/Python"},
    cmake_install_dir="Applications/Python/ogs",
    extras_require={"test": ["pytest", "numpy"]},
    cmake_args=cmake_args,
    python_requires=">=3.7",
    entry_points={"console_scripts": console_scripts},
    use_scm_version={
        "write_to": "Applications/Python/_version.py",
        "write_to_template": '__version__ = "{version}"',
        # Switching to guess-next-dev (default) would increment the version number
        # This would be in line with PEP 440, switch OGS versioning too?
        "version_scheme": "no-guess-dev",
        "local_scheme": scm_local_scheme,
        # Was in pyproject.toml but it somehow reset the version scheme. Maybe
        # it is better to do all scm config here.
        "git_describe_command": 'git describe --dirty --tags --long --match "*[0-9]*" --abbrev=8',
    },
)
back to top