Update setup.py
Added packages=find_packages() instead of hardcoding the packages
This commit is contained in:
parent
4acdb13d5b
commit
1f86cd6294
2
setup.py
2
setup.py
|
|
@ -28,7 +28,7 @@ setup(name=name,
|
||||||
author="Joel Martin",
|
author="Joel Martin",
|
||||||
author_email="github@martintribe.org",
|
author_email="github@martintribe.org",
|
||||||
|
|
||||||
packages=['websockify'],
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'numpy', 'requests',
|
'numpy', 'requests',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue