From 82a3ac92b0f4b67aa81a39f37a8c11564a2389e5 Mon Sep 17 00:00:00 2001 From: torik <77811180+torik42@users.noreply.github.com> Date: Mon, 7 Nov 2022 10:35:34 +0100 Subject: [PATCH] correct build configuration (fix #232) --- pyproject.toml | 2 +- setup.cfg | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8c6700f..d295994 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,4 +23,4 @@ classifiers = [ "Issue Tracker" = "https://github.com/torik42/YaLafi/issues" [tool.setuptools] -package-dir = {"" = "yalafi"} \ No newline at end of file +packages = ["yalafi", "yalafi.shell"] \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 82345ce..67e7066 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,6 @@ # Configuration for setuptools # Can be removed, when beta status of `tool.setuptools` table in `pyproject.toml` is removed. [options] -package_dir= - =yalafi \ No newline at end of file +packages = + yalafi + yalafi.shell \ No newline at end of file