Skip to content

Commit

Permalink
Fix build on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
pradal committed May 17, 2024
1 parent e85f748 commit 85053aa
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ requirements:
- openalea.deploy
build:
- python {{PY_VER}}
- {{ compiler('c') }} # [unix]
- {{ compiler('cxx') }} # [unix]
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- m2w64-toolchain # [win]
- openalea.deploy
- openalea.sconsx
Expand Down
40 changes: 40 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[build-system]
requires = ["meson-python"]
build-backend = "mesonpy"


[project]
name = "alinea.caribu"
description = "Python/Visualea interface to Caribu Light model."
readme = "README.rst"
license.file = "INRA_License_agreement"
authors = [
{ name = "My Name", email = "[email protected]" },
]
maintainers = [
{ name = "INRAE", email = "[email protected]" },
{ name = "INRAE", email = "[email protected]" },
{ name = "CIRAD", email = "[email protected]" },
]
requires-python = ">=3.8"

dependencies = [
]

classifiers = [
"Development Status :: 4 - Beta",
"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",
"Topic :: Scientific/Engineering :: Biology",
]

[project.urls]
Homepage = "https://github.com/openalea/caribu"
Documentation = "https://caribu.readthedocs.io/"
"Bug Tracker" = "https://github.com/openalea/caribu/issues"
Discussions = "https://github.com/openalea/caribu/discussions"
Changelog = "https://caribu.readthedocs.io/en/latest/changelog.html"

0 comments on commit 85053aa

Please sign in to comment.