Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverHennhoefer committed Dec 23, 2024
1 parent 9226855 commit e750975
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "unquad"
version = "0.1.2"
version = "0.1.4"
description = "Conformal Anomaly Detection"
authors = [
{ name = "Oliver Hennhoefer", email = "[email protected]" },
Expand All @@ -18,18 +18,18 @@ classifiers = [
]
requires-python = ">=3.12"
dependencies = [
"numpy ~=1.26.0",
"pandas ~=2.2.1",
"pyod ~=1.1.3",
"scipy ~=1.13.0",
"tqdm ~=4.66.2",
"numpy >=1.26.0",
"pandas >=2.2.1",
"pyod ~=2.0.3",
"scipy >=1.13.0",
"tqdm >=4.66.2",
]

[project.optional-dependencies]
dev = ["black", "flake8"]
dl = ["tensorflow ~=2.16.1", "torch ~=2.2.2"]
data = ["pyarrow ~= 16.1.0"]
all = ["black", "flake8", "tensorflow ~=2.16.1", "torch ~=2.2.2", "pyarrow ~= 16.1.0"]
dl = ["tensorflow >=2.16.1", "torch >=2.2.2"]
data = ["pyarrow >= 16.1.0"]
all = ["black", "flake8", "tensorflow >=2.16.1", "torch >=2.2.2", "pyarrow >= 16.1.0"]

[project.urls]
"Homepage" = "https://github.com/OliverHennhoefer/unquad"
Expand Down

0 comments on commit e750975

Please sign in to comment.