Skip to content
This repository has been archived by the owner on Mar 15, 2019. It is now read-only.

Commit

Permalink
adjusted import and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnykv committed Sep 1, 2014
1 parent 54e7785 commit a0f7a34
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions beeswarm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import zmq.green as zmq
try:
import zmq.green as zmq
zmq_context = zmq.Context()
except ImportError:
pass

version = '0.4.15'

zmq_context = zmq.Context()
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import beeswarm
from beeswarm import version as beeswarm_version

setup(
name='Beeswarm',
version=beeswarm.version,
version=beeswarm_version,
packages=find_packages(exclude=['bin', 'docs']),
scripts=['bin/beeswarm'],
url='https://github.com/honeynet/beeswarm',
Expand Down

0 comments on commit a0f7a34

Please sign in to comment.