From 179f3b8f7d7f8df1b6cbe9370bb22a5eaad6eb1a Mon Sep 17 00:00:00 2001 From: axelvonkamp Date: Fri, 18 Oct 2024 16:19:33 +0200 Subject: [PATCH] update pyproject.toml for conda-forge --- pyproject.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8f85f66..9e3d6b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,13 +6,17 @@ authors = [ ] description = "Module for enumerating minimal cut sets" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", ] -dependencies = ["numpy==1.23", "scipy", "cobra>=0.26.3", "optlang", "efmtool_link>=0.0.6", "sympy>=1.12", "swiglpk"] +dependencies = ["numpy==1.23.*", "scipy", "cobra>=0.29", "optlang", "efmtool_link>=0.0.6", "sympy>=1.12", "swiglpk"] + +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" [project.urls] Homepage = "https://github.com/cnapy-org/optlang_enumerator"