Skip to content

Commit

Permalink
fix missing locale files in build
Browse files Browse the repository at this point in the history
  • Loading branch information
nichind committed Dec 7, 2024
1 parent 6e97ce7 commit 0933d6c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from setuptools import setup, find_packages
from glob import glob


def readme():
Expand All @@ -8,14 +9,15 @@ def readme():

setup(
name="pybalt",
version="2024.12.4",
version="2024.12.5",
author="nichind",
author_email="[email protected]",
description="Download mediafiles from YouTube, Twitter (X), Instagram, Reddit & more. CLI & python module for @imputnet's cobalt processing instance api.",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/nichind/pybalt",
packages=find_packages(),
package_data={"pybalt": ["locales/*.txt"]},
install_requires=[
"aiohttp",
"aiofiles",
Expand Down Expand Up @@ -55,3 +57,4 @@ def readme():
],
},
)

0 comments on commit 0933d6c

Please sign in to comment.