Skip to content

Commit

Permalink
Force utf-8 read
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Sep 3, 2024
1 parent 9a45c77 commit c1e4a7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

import setuptools # type:ignore[import-untyped]

long_description = Path("README.md").read_text()
install_requires = Path("requirements.txt").read_text()
long_description = Path("README.md").read_text(encoding='utf-8')
install_requires = Path("requirements.txt").read_text(encoding='utf-8')

package_name = "lvsfunc"

exec(Path(f'{package_name}/_metadata.py').read_text(), meta := dict[str, str]())
exec(Path(f'{package_name}/_metadata.py').read_text(encoding='utf-8'), meta := dict[str, str]())

setuptools.setup(
name=package_name,
Expand Down

0 comments on commit c1e4a7e

Please sign in to comment.