diff --git a/MANIFEST.in b/MANIFEST.in index 2dd46d2..2401fa2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -include CHANGES.txt *.py README.md LICENSE.txt +include CHANGES.txt README.md LICENSE.txt diff --git a/setup.py b/setup.py index 642dbc4..073b148 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup, find_packages +from setuptools import setup version = '0.1.0' name = 'websockify' @@ -18,7 +18,7 @@ setup(name=name, author="Joel Martin", author_email="github@martintribe.org", - packages=find_packages(), + packages=['websockify'], include_package_data=True, install_requires=['numpy'], zip_safe=False, diff --git a/websockify.py b/websockify.py deleted file mode 120000 index 05b5af4..0000000 --- a/websockify.py +++ /dev/null @@ -1 +0,0 @@ -websockify \ No newline at end of file diff --git a/websockify b/websockify/__init__.py similarity index 100% rename from websockify rename to websockify/__init__.py diff --git a/websocket.py b/websockify/websocket.py similarity index 100% rename from websocket.py rename to websockify/websocket.py