From 50f6742b231836fc9382fde808c087d1f90e5b4b Mon Sep 17 00:00:00 2001 From: "TCS portal test user (insilicolab@gmail.com)" Date: Mon, 19 May 2025 17:29:13 +0200 Subject: [PATCH] Add environment.yml --- environment.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 environment.yml diff --git a/environment.yml b/environment.yml new file mode 100644 index 0000000..119ab27 --- /dev/null +++ b/environment.yml @@ -0,0 +1,21 @@ + # environment.yml template for micromamba + # NOTE: Environment name is programmatically set - any 'name' field here will be ignored + + # Configure channels + channels: + # Add/remove channels as needed: + # - conda-forge + # - defaults + + # List all dependencies (both conda and pip packages) + dependencies: + # Conda packages (specify versions as needed): + # - python=3.11 # Include Python explicitly if needed + # - numpy>=1.21 # Example minimum version + + # For PyPI packages: + # - pip + # - pip: + # - package_name==1.2.3 # PyPI packages with exact versions + +