From 0f2fca2a8380214191f342799714d0ca3933f82a Mon Sep 17 00:00:00 2001 From: Kodjo Sossouvi Date: Mon, 27 Oct 2025 22:43:19 +0100 Subject: [PATCH] Updated pyproject.toml version --- Makefile | 18 ++++++++++++++++++ pyproject.toml | 2 +- requirements.txt | 28 ++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d4147ca --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +# Makefile for cleaning packaging files and directories + +.PHONY: clean-package clean-build clean + +# Clean distribution artifacts (dist/ and *.egg-info) +clean-package: + rm -rf dist + rm -rf *.egg-info + rm -rf src/*.egg-info + +# Clean all Python build artifacts (dist, egg-info, pyc, and cache files) +clean-build: clean-package + find . -name "__pycache__" -type d -exec rm -rf {} + + find . -name "*.pyc" -exec rm -f {} + + find . -name "*.pyo" -exec rm -f {} + + +# Alias to clean everything +clean: clean-build \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index e7dc3f1..67efb17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dbengine" -version = "1.0.0" +version = "0.1.0" description = "A lightweight, git-inspired database engine that maintains complete history of all modifications" readme = "README.md" requires-python = ">=3.8" diff --git a/requirements.txt b/requirements.txt index f2a871b..634f836 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,33 @@ +build==1.3.0 +certifi==2025.10.5 +cffi==2.0.0 +charset-normalizer==3.4.4 +cryptography==46.0.3 +docutils==0.22.2 +id==1.5.0 +idna==3.11 iniconfig==2.1.0 +jaraco.classes==3.4.0 +jaraco.context==6.0.1 +jaraco.functools==4.3.0 +jeepney==0.9.0 +keyring==25.6.0 +markdown-it-py==4.0.0 +mdurl==0.1.2 +more-itertools==10.8.0 +nh3==0.3.1 packaging==25.0 pluggy==1.6.0 +pycparser==2.23 Pygments==2.19.2 +pyproject_hooks==1.2.0 pytest==8.4.2 +readme_renderer==44.0 +requests==2.32.5 +requests-toolbelt==1.0.0 +rfc3986==2.0.0 +rich==14.2.0 +SecretStorage==3.4.0 +setuptools==80.9.0 +twine==6.2.0 +urllib3==2.5.0