Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "polystore"
dynamic = ["version"]
version = "0.1.0"
description = "Framework-agnostic multi-backend storage abstraction for ML and scientific computing"
readme = "README.md"
requires-python = ">=3.11"
Expand Down Expand Up @@ -139,8 +139,7 @@ Source = "https://github.com/trissim/polystore"
where = ["src"]
include = ["polystore*"]

[tool.setuptools.dynamic]
version = {attr = "polystore.__version__"}


[tool.pytest.ini_options]
testpaths = ["tests"]
Expand Down
2 changes: 2 additions & 0 deletions src/polystore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
Polystore package exports.
"""

__version__ = "0.1.0"

import os

from .atomic import file_lock, atomic_write_json, atomic_update_json, FileLockError, FileLockTimeoutError
Expand Down