forked from brandon-rhodes/logging_tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1.06 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
from distutils.core import setup
import logging_tree
setup(name='logging_tree',
version=logging_tree.__version__,
description='Introspect and display the logger tree inside "logging"',
long_description=logging_tree.__doc__,
author='Brandon Rhodes',
author_email='[email protected]',
url='https://github.com/brandon-rhodes/logging_tree',
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.3',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: System :: Logging',
],
packages=['logging_tree', 'logging_tree.tests'],
)