From 879bd82376b272df886241adae9472e0f784037c Mon Sep 17 00:00:00 2001 From: Q Date: Thu, 27 Jun 2024 20:08:22 +0300 Subject: [PATCH] toml missing --- pyproject.toml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c2ee82b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,31 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.version] +path = "qgpg/__init__.py" + +[project] +name = "qgpg" +dynamic = ["version"] + +authors = [ + { name="V R", email="q@six9.net" }, +] +description = "Quick GPG wrapper" +#readme = "README.md" +requires-python = ">=3.8" +dependencies = [ + "python-gnupg" +] +license = {text = "MIT License"} + + +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", +] + +[project.scripts] +qgpg = "qgpg:main"