Skip to content

Commit

Permalink
flake8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dnaeon committed Sep 3, 2014
1 parent 81b9468 commit 345b033
Show file tree
Hide file tree
Showing 10 changed files with 650 additions and 392 deletions.
25 changes: 13 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
from setuptools import setup

setup(name='vpoller',
version='0.2.9',
description='VMware vSphere Distributed Pollers',
author='Marin Atanasov Nikolov',
author_email='dnaeon@gmail.com',
license='BSD',
packages=['vpoller', 'vpoller.helpers'],
package_dir={'': 'src'},
scripts=[
setup(
name='vpoller',
version='0.2.9',
description='VMware vSphere Distributed Pollers',
author='Marin Atanasov Nikolov',
author_email='dnaeon@gmail.com',
license='BSD',
packages=['vpoller', 'vpoller.helpers'],
package_dir={'': 'src'},
scripts=[
'src/vpoller-client',
'src/vpoller-proxy',
'src/vpoller-worker',
],
install_requires=[
],
install_requires=[
'pyzmq >= 14.1.1',
'docopt >= 0.6.1',
'pyvmomi >= 5.5.0',
'tabulate >= 0.7.2',
'vconnector >= 0.2.9',
]
]
)
2 changes: 1 addition & 1 deletion src/vpoller/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__name__ = 'vpoller'
__all__ = [ 'core', 'worker', 'client', 'agent', 'proxy' ]
__all__ = ['core', 'worker', 'client', 'agent', 'proxy']
Loading

0 comments on commit 345b033

Please sign in to comment.