Skip to content

Commit e406ad9

Browse files
committed
Project: Make sure to include epo_ops.middlewares into package
############################ # Package would be ignored # ############################ Python recognizes 'epo_ops.middlewares.cache' as an importable package, but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'epo_ops.middlewares.cache' is explicitly added to the `packages` configuration field.
1 parent 1123ff6 commit e406ad9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
maintainer_email="[email protected]",
2424
url="https://github.com/ip-tools/python-epo-ops-client",
2525
download_url="https://pypi.org/project/python-epo-ops-client/#files",
26-
packages=["epo_ops"],
26+
packages=["epo_ops", "epo_ops.middlewares"],
2727
package_dir={"epo_ops": "epo_ops"},
2828
include_package_data=True,
2929
install_requires=[

0 commit comments

Comments
 (0)