Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iver56 committed Apr 11, 2024
1 parent 379dc45 commit 210c579
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ build-backend = "setuptools.build_meta"

[project]
name = "numpy-rms"
authors = [
{name = "Iver Jordal"}
]
version = "0.1.0"
description = "A fast python library for calculating the RMS of a numpy array"
description = "A fast python library for calculating the RMS of a NumPy array"
dependencies = [
"numpy>=1.21"
]
Expand All @@ -30,15 +33,12 @@ urls = { "Homepage" = "https://github.com/nomonosound/numpy-rms" }
[tool.setuptools_scm]
write_to = "numpy_rms/_version.py"

[project.optional-dependencies]
test = ["pytest", "pytest-benchmark"]

[tool.cibuildwheel]
test-requires = ["cffi", "pytest"]
test-requires = ["cffi", "pytest", "pytest-benchmark"]
test-command = "pytest {project}/tests"

[tool.setuptools.packages.find]
exclude = ["scripts", "tests", "wheelhouse"]
exclude = ["tests", "wheelhouse"]

[tool.pytest]
testpaths = ["tests"]

0 comments on commit 210c579

Please sign in to comment.