diff --git a/poetry.lock b/poetry.lock index a844e95..23c520f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1481,13 +1481,13 @@ test = ["coverage[toml] (>=5.2)", "hypothesis", "pytest (>=6.0)", "pytest-benchm [[package]] name = "pytest" -version = "8.1.1" +version = "8.1.2" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.8" files = [ - {file = "pytest-8.1.1-py3-none-any.whl", hash = "sha256:2a8386cfc11fa9d2c50ee7b2a57e7d898ef90470a7a34c4b949ff59662bb78b7"}, - {file = "pytest-8.1.1.tar.gz", hash = "sha256:ac978141a75948948817d360297b7aae0fcb9d6ff6bc9ec6d514b85d5a65c044"}, + {file = "pytest-8.1.2-py3-none-any.whl", hash = "sha256:6c06dc309ff46a05721e6fd48e492a775ed8165d2ecdf57f156a80c7e95bb142"}, + {file = "pytest-8.1.2.tar.gz", hash = "sha256:f3c45d1d5eed96b01a2aea70dee6a4a366d51d38f9957768083e4fecfc77f3ef"}, ] [package.dependencies] diff --git a/pyproject.toml b/pyproject.toml index caf5bdd..ecb773a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,24 @@ [tool.poetry] name = "archivefile" -version = "0.1.0" +version = "0.2.0" description = "Unified interface for tar, zip, sevenzip, and rar files" authors = ["Raventric <78981416+Ravencentric@users.noreply.github.com>"] readme = "README.md" +license = "Unlicense" packages = [{include = "archivefile", from = "src"}] +keywords = ["archive", "zipfile", "tarfile", "sevenzip", "rarfile", "python"] +homepage = "https://ravencentric.github.io/archivefile" +repository = "https://github.com/Ravencentric/archivefile" +documentation = "https://ravencentric.github.io/archivefile" +classifiers = [ + "License :: OSI Approved :: The Unlicense (Unlicense)", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Typing :: Typed", +] [tool.poetry.dependencies] python = ">=3.9"