Skip to content

Commit

Permalink
pytest-listener: Use py_modules in setup.py
Browse files Browse the repository at this point in the history
This package does not use a package directory, so when building a wheel,
no code is included. Use the correct keyword, py_modules.
  • Loading branch information
s-t-e-v-e-n-k authored and jonbannister committed Oct 24, 2024
1 parent 37cea8d commit 5480ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest-listener/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
classifiers=classifiers,
install_requires=install_requires,
tests_require=tests_require,
packages=find_packages(exclude='tests'),
py_modules=['pytest_listener'],
entry_points=entry_points,
))
setup(**kwargs)

0 comments on commit 5480ab9

Please sign in to comment.