Relicense under the MIT license
This commit is contained in:
parent
dbe822a02c
commit
b68dfd57f1
20
LICENSE
Normal file
20
LICENSE
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2016 Frank Valcarcel
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||||
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||||
|
subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@ -82,4 +82,4 @@ Then in the `docs/` directory, run
|
|||||||
License
|
License
|
||||||
-------
|
-------
|
||||||
|
|
||||||
This module is available under the BSD license.
|
This module is available under the MIT license.
|
||||||
|
@ -1,4 +1,23 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
|
# in the Software without restriction, including without limitation the rights
|
||||||
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
# copies of the Software, and to permit persons to whom the Software is
|
||||||
|
# furnished to do so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in
|
||||||
|
# all copies or substantial portions of the Software.
|
||||||
|
#
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
# SOFTWARE.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Extra functionality for Flask logging
|
Extra functionality for Flask logging
|
||||||
|
|
||||||
@ -16,7 +35,7 @@ import logging
|
|||||||
__version_info__ = ('0', '0', '1')
|
__version_info__ = ('0', '0', '1')
|
||||||
__version__ = '.'.join(__version_info__)
|
__version__ = '.'.join(__version_info__)
|
||||||
__author__ = 'Gergely Polonkai'
|
__author__ = 'Gergely Polonkai'
|
||||||
__license__ = 'BSD'
|
__license__ = 'MIT'
|
||||||
__copyright__ = '(c) 2015 GT2'
|
__copyright__ = '(c) 2015 GT2'
|
||||||
|
|
||||||
class FlaskExtraLogger(logging.getLoggerClass()):
|
class FlaskExtraLogger(logging.getLoggerClass()):
|
||||||
|
4
setup.py
4
setup.py
@ -10,7 +10,7 @@ from setuptools import setup
|
|||||||
setup(name='Flask-Logging-Extras',
|
setup(name='Flask-Logging-Extras',
|
||||||
version='0.0.1',
|
version='0.0.1',
|
||||||
url='https://github.com/gergelypolonkai/flask-logging-extras',
|
url='https://github.com/gergelypolonkai/flask-logging-extras',
|
||||||
license='BSD',
|
license='MIT',
|
||||||
author='Gergely Polonkai',
|
author='Gergely Polonkai',
|
||||||
author_email='gergely@polonkai.eu',
|
author_email='gergely@polonkai.eu',
|
||||||
description='Extra logging functionality for Flask apps',
|
description='Extra logging functionality for Flask apps',
|
||||||
@ -24,7 +24,7 @@ setup(name='Flask-Logging-Extras',
|
|||||||
'Development Status :: 4 - Beta',
|
'Development Status :: 4 - Beta',
|
||||||
'Environment :: Web Environment',
|
'Environment :: Web Environment',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'License :: OSI Approved :: BSD License',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
|
Loading…
Reference in New Issue
Block a user