-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (34 loc) · 1005 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Log colorizer
"""
import sys
from setuptools import find_packages, setup
VERSION = "2.0.0"
requires = []
if sys.platform == 'win32':
requires.append('colorama')
options = dict(
name="log_colorizer",
version=VERSION,
description="A color formater for python logging",
long_description=__doc__,
author="Kozea",
author_email="[email protected]",
license="BSD",
platforms="Any",
packages=find_packages(),
install_requires=requires,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)
setup(**options)