Set correct informations to have working egg
This commit is contained in:
parent
7c5ae56e18
commit
0618331f0e
|
|
@ -1 +1 @@
|
||||||
include CHANGES.txt websockify README.md
|
include CHANGES.txt *.py README.md LICENSE.txt
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -1,6 +1,4 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
import glob
|
|
||||||
import os
|
|
||||||
|
|
||||||
version = '0.1-dev'
|
version = '0.1-dev'
|
||||||
name = 'websockify'
|
name = 'websockify'
|
||||||
|
|
@ -20,7 +18,7 @@ setup(name=name,
|
||||||
author="Joel Martin",
|
author="Joel Martin",
|
||||||
author_email="github@martintribe.org",
|
author_email="github@martintribe.org",
|
||||||
|
|
||||||
packages="",
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=['numpy'],
|
install_requires=['numpy'],
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue