Skip to content

Commit

Permalink
Update setup.py, exclude 'tests' (#4)
Browse files Browse the repository at this point in the history
otherwise it would try to install a package called 'tests' at top level, which is very bad sytle (and forbidden).
  • Loading branch information
onkelbeh authored Apr 7, 2022
1 parent 031cd56 commit 0e00517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JohNan/pyplaato",
packages=setuptools.find_packages(),
packages=setuptools.find_packages(exclude=["tests","tests.*"]),
classifiers=[
"Framework :: AsyncIO",
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 0e00517

Please sign in to comment.