From 4261d1c3fae43ac9fa16626b78da185e54d00d91 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Mon, 12 Dec 2022 13:30:28 +0100 Subject: [PATCH] Fix packaging issue missing module --- changelog.yaml | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelog.yaml b/changelog.yaml index b2f8328..e26d5ba 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,8 @@ +0.32.1: + date: 2022-12-12 + changes: + - "Fix packaging issue, missing toot.utils module" + 0.32.0: date: 2022-12-12 changes: diff --git a/setup.py b/setup.py index ebab4ab..151278b 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ setup( 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Programming Language :: Python :: 3', ], - packages=['toot', 'toot.tui'], + packages=['toot', 'toot.tui', 'toot.utils'], python_requires=">=3.6", install_requires=[ "requests>=2.13,<3.0",