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
4 changes: 2 additions & 2 deletions py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ build-backend = "setuptools.build_meta"

[project]
name = "llnl-clippy"
version = "0.5.3"
authors = [
{ name="Roger Pearce"}, { name="Seth Bromberger"}
]
description="A Python interface to HPC resources"
readme = "README.md"
dynamic = ["dependencies", "optional-dependencies"]
dynamic = ["dependencies", "optional-dependencies", "version"]

requires-python = ">=3.10"

Expand All @@ -24,6 +23,7 @@ classifiers = [
]

[tool.setuptools.dynamic]
version = {file = "src/clippy/VERSION"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = {file = ["requirements-dev.txt"] }}

Expand Down
1 change: 1 addition & 0 deletions py/src/clippy/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.5.4
3 changes: 3 additions & 0 deletions py/src/clippy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@

import importlib
import logging
from pathlib import Path

from .clippy_types import CLIPPY_CONFIG, AnyDict
from .config import _clippy_cfg

__version__ = (Path(__file__).parent / "VERSION").read_text().strip()

# Create the main configuraton object and expose it globally.
cfg = CLIPPY_CONFIG(_clippy_cfg)

Expand Down
Loading