From 07a66351cfcb62351ccd6523281837653f672578 Mon Sep 17 00:00:00 2001 From: Eren Date: Thu, 19 Sep 2024 12:26:04 +0200 Subject: [PATCH] add versioneer and dependencies requirement details to pyproject.toml --- pyproject.toml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 55f1b5d..ca1a22b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,11 +21,11 @@ readme = "README.md" requires-python = ">=3.9" dependencies = [ "MDAnalysis>=2.0.0", - "hmmlearn", - "networkx", - "numpy", - "scikit-learn", - "scipy" + "hmmlearn == 0.3.2", + "networkx >= 3.0.0", + "numpy >= 1.26.0, <2.0.0", + "scikit-learn >= 1.4.0", + "scipy >= 1.13.0" ] keywords = [ @@ -55,3 +55,10 @@ minversion = "6.0" testpaths = [ "domhmm/tests", ] + +[tool.versioneer] +VCS = "git" +style = "pep440" +versionfile_source = "domhmm/_version.py" +versionfile_build = "domhmm/_version.py" +tag_prefix = "" \ No newline at end of file