Updated pyproject.toml version
This commit is contained in:
18
Makefile
Normal file
18
Makefile
Normal file
@@ -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
|
||||
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user