Skip to content

Commit

Permalink
Merge pull request #8 from kjsanger/fix/pyproject-deps
Browse files Browse the repository at this point in the history
Add version ranges to pyproject.toml
  • Loading branch information
kjsanger authored Oct 7, 2024
2 parents 582b25f + 18b0498 commit 34be4e8
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name = "npg-python-lib"
description = "A library of Python functions and classes common to NPG applications."
license = { file = "LICENSE", content-type = "text/plain" }
readme = { file = "README.md", content-type = "text/markdown" }
authors = [{ name = "Keith James", email = "kdj@sanger.ac.uk" },
{ name = "Michael Kubiak", email = "mk35@sanger.ac.uk" }]
authors = [{ name = "Keith James", email = "kdj@sanger.ac.uk" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
Expand All @@ -16,15 +15,15 @@ requires-python = ">=3.10"
dynamic = ["version"]

dependencies = [
"python-dateutil",
"structlog",
"python-dateutil >=2.9.0,<3",
"structlog >=23.3.0",
]

[project.optional-dependencies]
test = [
"black",
"pytest",
"pytest-it"
"black >=24.3.0,<25",
"pytest >=8.0,<9",
"pytest-it >=0.1.5"
]

[project.urls]
Expand Down

0 comments on commit 34be4e8

Please sign in to comment.