Skip to content
Merged
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.3] - 2025-12-26

### Fixed
- `ModuleNotFound` packaging error.

## [0.2] - 2025-12-26

### Changed
Expand All @@ -12,6 +17,7 @@
- `calibration_error` function
- `build_reliability_diagram` function

[Unreleased]: https://github.com/yourusername/yourproject/compare/0.2...HEAD
[Unreleased]: https://github.com/yourusername/yourproject/compare/0.3...HEAD
[0.3]: https://github.com/yourusername/yourproject/compare/0.2...0.3
[0.2]: https://github.com/yourusername/yourproject/compare/0.1...0.2
[0.1]: https://github.com/yourusername/yourproject/releases/tag/0.1
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
## autodoc
autodoc_default_options = {
"members": True,
"inherited-members": False,
"inherited-members": True,
"private-members": False,
"show-inheritance": True,
"special-members": False,
Expand Down
3 changes: 2 additions & 1 deletion 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 = "khalib"
version = "0.2"
version = "0.3"
description = "Classifier Calibration with Khiops"
authors = [{ name = "Felipe Olmos", email = "[email protected]" }]
requires-python = ">=3.11"
Expand Down Expand Up @@ -43,6 +43,7 @@ changelog = "https://github.com/KhiopsLab/khalib/blob/main/CHANGELOG.md"

[tool.setuptools.packages.find]
where = ["src"]
include = ["khalib"]

[tool.pytest.ini_options]
markers = [
Expand Down
15 changes: 15 additions & 0 deletions src/khalib/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from .main import (
Histogram,
KhalibClassifier,
build_reliability_diagram,
calibrate_binary,
calibration_error,
)

__all__ = [
"Histogram",
"KhalibClassifier",
"build_reliability_diagram",
"calibrate_binary",
"calibration_error",
]
File renamed without changes.