diff --git a/pyproject.toml b/pyproject.toml index 2154c8e..e39effb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,14 +1,16 @@ [build-system] -requires = ["hatchling"] +requires = ["hatchling>=1.0.0"] build-backend = "hatchling.build" [project] name = "nerif" -version = "0.9.3" +version = "0.9.5" description = "LLM powered Python" readme = "README.md" -authors = [{ name = "Chivier Humber" }] +authors = [ + {name = "Chivier Humber", email = "chivier.humber@outlook.com"} +] license = { file = "LICENSE" } classifiers = [ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", @@ -27,6 +29,12 @@ dependencies = [ ] requires-python = ">=3.8" +[tool.hatch.build.targets.wheel] +package-dir = ["nerif"] + +[tool.hatch.build] +directory = "nerif" + [tool.pytest.ini_options] addopts = ["--import-mode=importlib"] @@ -34,13 +42,13 @@ addopts = ["--import-mode=importlib"] dev = ["bumpver", "ruff", "pip-tools", "pytest", "ipython", "isort"] [project.urls] -Homepage = "https://github.com/Nerif-AI/nerif" +Homepage = "https://nerif-ai.com" [tool.bumpver] -current_version = "0.9.3" +current_version = "0.9.5" version_pattern = "MAJOR.MINOR.PATCH" -commit_message = "Bump version {old_version} -> {new_version}" +commit_message = "release: Bump version {old_version} -> {new_version}" commit = true tag = true push = false