-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
27 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#!/usr/bin/env python | ||
from setuptools import find_packages | ||
from setuptools import setup | ||
|
||
VERSION = "1.0.6" | ||
|
||
requirements = ["websocket-client!=0.49"] | ||
VERSION = "1.0.7" | ||
|
||
|
||
def readme(): | ||
|
@@ -19,9 +19,13 @@ def readme(): | |
author="Nils Diefenbach", | ||
author_email="[email protected]", | ||
license="MIT", | ||
url="https://github.com/nlsdfnbch/Pysher", | ||
install_requires=requirements, | ||
packages=["pysher"], | ||
url="https://github.com/deepbrook/Pysher", | ||
packages=find_packages('src'), | ||
package_dir={'': 'src'}, | ||
install_requires=[ | ||
"websocket-client!=0.49", | ||
], | ||
tests_requires=["autobahn"], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Web Environment', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
from pysher.pusher import Pusher | ||
from pysher.connection import Connection | ||
from pysher.channel import Channel | ||
|
||
from pysher.pusher import Pusher | ||
|
||
__all__ = ["Connection", "Pusher"] |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
import logging | ||
import json | ||
|
||
VERSION = '0.6.0' | ||
VERSION = '1.0.7' | ||
|
||
|
||
class Pusher(object): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters