diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index d5e6fe1..a3630d5 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -31,6 +31,7 @@ jobs: test_submission: true package_name: 'propkatraj' module_name: 'propkatraj' + test_deps: 'pytest MDAnalysisTests' tests: true pypi_push: @@ -54,4 +55,5 @@ jobs: with: package_name: 'propkatraj' module_name: 'propkatraj' + test_deps: 'pytest MDAnalysisTests' tests: true diff --git a/pyproject.toml b/pyproject.toml index 128350e..a25d819 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ classifiers = [ readme = "README.md" requires-python = ">=3.10" dependencies = [ - "MDAnalysis>=2.1.0", + "MDAnalysis>=2.1.0", "numpy", "pandas", "propka==3.1", @@ -51,10 +51,11 @@ test = [ "pytest>=6.0", "pytest-xdist>=2.5", "pytest-cov>=3.0", + "MDAnalysisTests>=2.1.0", ] [project.urls] -"documentation" = "https://github.com/Becksteinlab/propkatraj/blob/main/README.md" +"documentation" = "https://becksteinlab.github.io/propkatraj/" "Issue tracker" = "https://github.com/Becksteinlab/propkatraj/issues" "MDAKit registry" = "https://mdakits.mdanalysis.org/propkatraj.html" "source" = "https://github.com/Becksteinlab/propkatraj"