diff --git a/pyproject.toml b/pyproject.toml index a2d71cb..643445b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,14 @@ license = "MIT" license-files = ["LICENSE"] authors = [{ name = "David Kneringer Foss", email = "david.k.foss@gmail.com" }] requires-python = ">=3.11" -keywords = ["deep learning", "optimizer", "learning rate", "bandit", "adaptive", "scheduler"] +keywords = [ + "deep learning", + "optimizer", + "learning rate", + "bandit", + "adaptive", + "scheduler", +] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", @@ -21,22 +28,17 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: Artificial Intelligence", ] -dependencies = [ - "torch>=2.0", -] +dependencies = ["torch>=2.0"] [project.optional-dependencies] -examples = [ - "torchvision>=0.22", - "transformers>=4.52", - "datasets>=3.6", -] +examples = ["torchvision>=0.22", "transformers>=4.52", "datasets>=3.6"] dev = ["pytest>=8,<9", "ruff>=0.6"] [project.urls] Homepage = "https://github.com/davidkfoss/pulseopt" Repository = "https://github.com/davidkfoss/pulseopt" Issues = "https://github.com/davidkfoss/pulseopt/issues" +Changelog = "https://github.com/davidkfoss/pulseopt/releases" [tool.setuptools] package-dir = { "" = "src" } diff --git a/src/pulseopt/__init__.py b/src/pulseopt/__init__.py index f748162..9c4155e 100644 --- a/src/pulseopt/__init__.py +++ b/src/pulseopt/__init__.py @@ -1,6 +1,6 @@ """Adaptive Episodic Exploration Scheduling package.""" -__version__ = "0.2.0" +__version__ = "0.2.1" from pulseopt.controller import ( TREND_CONTEXT_BUCKETS,