Skip to content

Commit

Permalink
Merge pull request #167 from henrypinkard/main
Browse files Browse the repository at this point in the history
Switch to pyproject.toml build
  • Loading branch information
henrypinkard authored Jul 26, 2024
2 parents 94dde49 + 82d42c6 commit 16b1c73
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/ndstorage/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 1, 9)
version_info = (0, 1, 10)
__version__ = ".".join(map(str, version_info))
25 changes: 25 additions & 0 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@

[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "ndstorage"
authors = [{name = "Henry Pinkard", email = "henry.pinkard.open.source@gmail.com"}]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
dependencies = [
"numpy"
"sortedcontainers"
"dask[array]>=2022.2.0"
]
dynamic = ["version"]
description = "N-dimensional, multiresolution file format for Micro-Manager"
readme = "README.md"

[tool.pytest.ini_options]
testpaths = [
"python/ndstorage/test",
]

[project.urls]
Home = "https://github.com/micro-manager/NDStorage"
3 changes: 0 additions & 3 deletions python/requirements.txt

This file was deleted.

0 comments on commit 16b1c73

Please sign in to comment.