Skip to content

Commit

Permalink
add versioneer and dependencies requirement details to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
yusuferentunc committed Sep 19, 2024
1 parent c170e17 commit 07a6635
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down Expand Up @@ -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 = ""

0 comments on commit 07a6635

Please sign in to comment.