-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setup.py missing Manifest for build #1
Comments
I was able to install the latest using the following command without error: However, when I use the client, the
|
Since PR#2 has been merged. Can someone try this again and see if this issue can be closed? Thanks. |
it works with python 3.7? |
https://pypi.org/YavorPaunov/deepstreampy is possible to have in pip package? |
Traceback (most recent call last):
File "test.py", line 4, in
import deepstreampy
File "build/bdist.linux-x86_64/egg/deepstreampy/init.py", line 5, in
File "build/bdist.linux-x86_64/egg/deepstreampy/client.py", line 4, in
ImportError: No module named message
I changed setup.py to
setup(name='deepstreampy',
version='0.1.1',
packages=find_packages(),
author='Yavor Paunov',
author_email='[email protected]',
description='A deepstream.io client.',
license='MIT',
url='https://www.github.com/YavorPaunov/deepstreampy',
# packages=['deepstreampy', 'tests', 'features'],
long_description=read('README.md'),
test_suite='tests')
It looks like it is missing a manifest file to make the original code work.
The text was updated successfully, but these errors were encountered: