From 26e3e22cd6ca6676b7b99624764f8e6f1ae1479d Mon Sep 17 00:00:00 2001 From: Marco Capitani Date: Fri, 21 Apr 2017 15:58:56 +0200 Subject: rumba: log: Added logging support, migrated from print to logging. + Added logging, migrated, default logging configuration is to stdout. + Minor PEP8 adjustments all-around --- setup.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 33d6813..d60a7d4 100644 --- a/setup.py +++ b/setup.py @@ -8,15 +8,15 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( - name = "Rumba", - version = "0.1", - url = "https://gitlab.com/arcfire/rumba", - keywords = "rina measurement testbed", - author = "Sander Vrijders", - author_email = "sander.vrijders@intec.ugent.be", - license = "LGPL", - description = "Rumba measurement framework for RINA", - long_description = long_description, - packages = ["rumba", "rumba.testbeds", "rumba.prototypes"], - install_requires = ["paramiko", "wheel", "wget"] + name="Rumba", + version="0.1", + url="https://gitlab.com/arcfire/rumba", + keywords="rina measurement testbed", + author="Sander Vrijders", + author_email="sander.vrijders@intec.ugent.be", + license="LGPL", + description="Rumba measurement framework for RINA", + long_description=long_description, + packages=["rumba", "rumba.testbeds", "rumba.prototypes"], + install_requires=["paramiko", "wheel", "wget"] ) -- cgit v1.2.3