Skip to content

Commit

Permalink
Add NumPY as required dependency
Browse files Browse the repository at this point in the history
fixes #25

Removed the `requires-dist` since the better/improved way seems to be
with `[dependencies]`, see https://www.maturin.rs/metadata
  • Loading branch information
hugoledoux committed Sep 16, 2024
1 parent f1d9efc commit 339ab8e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ build-backend = "maturin"
[project]
name = "startinpy"
requires-python = ">=3.9"
requires-dist = ["toml>=0.10.2"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]

dependencies = [
"toml>=0.10.2",
"numpy>=2.0.0"
]

0 comments on commit 339ab8e

Please sign in to comment.