Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
author="Joel Martin",
author_email="github@martintribe.org",

packages=['websockify'],
packages=find_packages(),

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure this is a plus, given we have such a simple project. Explicitly listing them gives you some protection against including any random junk that people might have in their working copy.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure why, but I only got it to work succesful this way.

When explicity stating the package, the build always fails with a message that the folder or package can not be found, even if they have the exact same name as the directory it is in...

I can do some tests again and give the error message maybe somone meight have more insight and makes the build without needing this change.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please do and share the error here.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#604 (comment)

I posted into the wrong comment...

include_package_data=True,
install_requires=[
'numpy', 'requests',
Expand Down