diff --git a/Makefile b/Makefile index a57302ff..caf61b6f 100644 --- a/Makefile +++ b/Makefile @@ -26,8 +26,13 @@ clean-pyc: clean-test: rm -f .coverage rm -f .coverage.* + rm -fr .pytest_cache -clean: clean-pyc clean-test +clean-build: + rm -fr build/ + rm -fr dist/ + +clean: clean-pyc clean-test clean-build test: clean OPENAI_API_KEY=test_key ANTHROPIC_API_KEY=test_key REFUEL_API_KEY=test_key pytest @@ -43,6 +48,7 @@ help: @echo 'dev: install autolabel from source with dev dependencies' @echo 'clean-pyc: remove Python file artifacts' @echo 'clean-test: remove test and coverage artifacts' + @echo 'clean-build: remove build artifacts' @echo 'clean: remove all build, test and coverage artifacts' @echo 'test: clean previous build and test artifacts, and run all tests' @echo '----' \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index df40efa5..485d7c60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "refuel-autolabel" -version = "0.0.8" +version = "0.0.9" description = "Label, clean and enrich text datasets with LLMs" readme = "README.md" authors = [{ name = "Refuel.ai", email = "support@refuel.ai" }]