Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions conda/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ channels:
- conda-forge
- openalea3
dependencies:
- matplotlib
- matplotlib-base
- pandas
- xlsxwriter
- path
- numpy
- openalea.mtg
# let pip install the rest using pyproject.toml (if you are okay with conda/pip mix)
- pip:
- -e .."[doc, test]"
- -e .."[doc, test]"

3 changes: 0 additions & 3 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ requirements:
- {{ dep }}
{% endfor %}

build:
- {{ compiler("cxx") }}

run:
- python
{% for dep in deps + conda_deps %}
Expand Down
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ build-backend = "setuptools.build_meta"

# enable dynamic versioning based on git tags
[tool.setuptools_scm]
# Format version to ease alignment with conda/meta.yaml tag-based versioning
fallback_version = "1.4.0.dev0"
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"

[project]
name = "rsml"
Expand All @@ -18,20 +22,19 @@ authors = [
license = "CECILL-C"
license-files = ["LICEN[CS]E*"]
keywords = ["OpenAlea", "RSML", "Plant Architecture"]
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Scientific/Engineering",
]

dependencies = [
"matplotlib",
"pandas",
"xlsxwriter",
"path",
Expand Down Expand Up @@ -69,6 +72,7 @@ channels = [
]
dependencies = [
"openalea.mtg",
"matplotlib-base",
]

[tool.setuptools.packages.find]
Expand Down
Loading