Skip to content

Commit

Permalink
add packaging as a dependency (#636)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekorman authored Jun 27, 2024
1 parent e8bbdcc commit 76389cb
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions client/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,21 @@ dynamic = ["version"]
description = "Python client for the Valor evaluation store"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
dependencies = ["requests", "Pillow >= 9.1.0", "numpy", "importlib_metadata; python_version < '3.8'", "tqdm"]
license = { file = "LICENSE" }
dependencies = [
"requests",
"Pillow >= 9.1.0",
"numpy",
"importlib_metadata; python_version < '3.8'",
"tqdm",
"packaging",
]

[project.urls]
homepage = "https://www.striveworks.com"

[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[project.optional-dependencies]
Expand Down

0 comments on commit 76389cb

Please sign in to comment.