Skip to content

Commit

Permalink
fix build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichFroebel committed Aug 13, 2023
1 parent d8d70f8 commit 772cea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages
from pathlib import Path


Expand All @@ -14,7 +14,7 @@
long_description_content_type="text/markdown",
author="Philipp Klaus (initial), FriedrichFröbel",
url="https://github.com/FriedrichFroebel/brother_ql_web/",
packages=find_packages(where=".", exclude=["tests", "tests.*"]),
packages=find_namespace_packages(where=".", exclude=["tests", "tests.*"]),
include_package_data=True,
python_requires=">=3.8, <4",
install_requires=[
Expand Down

0 comments on commit 772cea3

Please sign in to comment.