From 757ed61c3e456c0001b1a7e8f855723c5b890d19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20Kro=CC=88ker?= Date: Sun, 15 Dec 2024 12:16:12 +0100 Subject: [PATCH] add package mode --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fcb112c..cb74d4e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,6 @@ description = "Easy-to-use database using dicts" readme = "README.md" authors = [{ name = "Marcel Kröker", email = "kroeker.marcel@gmail.com" }] license = { file = "LICENSE" } -requires-python = ">=3.8,<3.14" classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", @@ -14,6 +13,7 @@ classifiers=[ "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules" ] +requires-python = ">=3.8,<3.14" dependencies = [ "orjson ~= 3.8.7" ] @@ -27,6 +27,10 @@ dev = [ [tool.setuptools] packages = ["dictdatabase"] +license-files = [] + +[tool.uv] +package = true [tool.ruff]