From 548171fe3c309c509489ca787d66a0ec6b31659e Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Sun, 5 Apr 2026 15:16:40 +0200 Subject: [PATCH] Update package configuration --- README.md | 3 +++ pyproject.toml | 10 ++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b56c89f..50e8c67 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,9 @@ pip install text-table --index-url https://repo.jcloud-services.ddns.net/simple/ ## Changelog +### Version 0.1.5 +- Update package configuration + ### Version 0.1.4 - Better handling of empty tables diff --git a/pyproject.toml b/pyproject.toml index 97f5611..3dc1c82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,13 @@ build-backend = "setuptools.build_meta" [project] name = "text_table" -version = "0.1.4" +version = "0.1.5" description = "A simple library for creating text tables." readme = "README.md" -license = "Apache-2.0" \ No newline at end of file +license = "Apache-2.0" + +[tool.setuptools] +package-dir = {"" = "src"} + +[tool.setuptools.packages.find] +where = ["src"] \ No newline at end of file