-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.72 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# ============================================================
#
# Copyright (C) 2014-2015 by Johannes Wienke <languitar at semipol dot de>
#
# This file may be licensed under the terms of the
# GNU Lesser General Public License Version 3 (the ``LGPL''),
# or (at your option) any later version.
#
# Software distributed under the License is distributed
# on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
# express or implied. See the LGPL for the specific language
# governing rights and limitations.
#
# You should have received a copy of the LGPL along with this
# program. If not, go to http://www.gnu.org/licenses/lgpl.html
# or write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ============================================================
from setuptools import setup, find_packages
setup(name='loggerbyclass',
version='0.3.0',
description='''
Provides a single helper function to simplify the common idiom
of getting one logger object from python standard logging per
class.
The method get_logger_by_class returns a logger with the name
being the full path to that class separated by dots.
''',
author='Johannes Wienke',
author_email='[email protected]',
url='https://github.com/languitar/loggerbyclass.git',
license='LGPLv3+',
keywords=['logging', 'helper', 'utility'],
classifiers=['Programming Language :: Python',
'Topic :: System :: Logging',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)'],
py_modules=['loggerbyclass']
)