Skip to content

Commit

Permalink
Fix missing subpackages
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmervdl committed Dec 6, 2022
1 parent 61d387e commit 7e5265d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="tmxutil",
version="1.2",
version="1.3",
author="Jelmer van der Linde",
author_email="[email protected]",
description="Tool to create, augment, filter and generally work with TMX files.",
Expand All @@ -25,6 +25,10 @@
"tmxutil=tmxutil.cli:entrypoint",
],
},
packages=["tmxutil"],
packages=[
"tmxutil",
"tmxutil.filters",
"tmxutil.formats"
],
python_requires=">=3.6",
)

0 comments on commit 7e5265d

Please sign in to comment.