diff --git a/LICENSE.TXT b/LICENSE.TXT index 0f9b65f..b68a372 100644 --- a/LICENSE.TXT +++ b/LICENSE.TXT @@ -1,3 +1,7 @@ +sg-manager + +BSD License + Copyright (c) 2013, GoodData Corporation. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided diff --git a/README.md b/README.md index 4e0a491..fe6a541 100644 --- a/README.md +++ b/README.md @@ -109,3 +109,6 @@ Mode depends on cloud used, for AWS EC2 *-a* is recommended, for AWS EC2 VPC *-v ## TODO - support for VPC groups + +## Development status +This tool is actively maintained by GoodData. diff --git a/setup.py b/setup.py index 067e6c4..7bcfcc5 100755 --- a/setup.py +++ b/setup.py @@ -8,14 +8,14 @@ name='sgmanager', version='1.4.1', packages=['sgmanager', 'sgmanager.logger', 'sgmanager.securitygroups'], - entry_points = { - 'console_scripts': [ 'sgmanager = sgmanager.cli:main' ] + entry_points={ + 'console_scripts': ['sgmanager = sgmanager.cli:main'] }, license='BSD', - author='Filip Pytloun', - author_email='filip.pytloun@gooddata.com', - maintainer='Filip Pytloun', - maintainer_email='filip@pytloun.cz', + author='GoodData Corporation', + author_email='python@gooddata.com', + maintainer='Petr Benas', + maintainer_email='petr.benas@gooddata.com', description='Security Groups Management Tool', long_description='Tooling for management of security groups. Load local configuration, load remote groups and apply differences.', url='https://github.com/gooddata/sgmanager', diff --git a/sgmanager/logger/level_handler.py b/sgmanager/logger/level_handler.py index 4567633..389c76e 100644 --- a/sgmanager/logger/level_handler.py +++ b/sgmanager/logger/level_handler.py @@ -1,13 +1,15 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- +# Copyright (C) 2007-2013, GoodData(R) Corporation. All rights reserved """ -Not mine, found over there: +based on http://code.activestate.com/recipes/576819-logging-to-console-without-surprises/ - -Licensed under the MIT License and slightly modified. """ + import logging import sys + class LevelHandler(logging.StreamHandler): """A handler that logs to console in the sensible way.