-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
53 lines (51 loc) · 1.81 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
43
44
45
46
47
48
49
50
51
52
53
from setuptools import (
setup,
find_packages,
)
setup(
name='chromalog',
url='http://chromalog.readthedocs.org/en/latest/index.html',
author='Julien Kauffmann',
author_email='[email protected]',
maintainer='Julien Kauffmann',
maintainer_email='[email protected]',
license='MIT',
version=open('VERSION').read().strip(),
description=(
"A non-intrusive way to use colors in your logs and generic output."
),
long_description="""\
Chromalog integrates seemlessly in any Python project and allows the use of
colors in log messages and generic output easily. It is based on colorama and
so works on both Windows and *NIX platforms. Chromalog is able to detect
without any configuration if the associated output stream has color
capabilities and can fall back to the default monochromatic logging.
Chromalog also offer helpers to easily highlight some important parts of a log
message.
""",
packages=find_packages(exclude=[
'tests',
'scripts',
]),
install_requires=[
'colorama>=0.3.7',
'future>=0.14.3',
'six>=1.9.0,<2',
],
test_suite='tests',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
],
)