-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 902 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='tagged-logger',
description=('Fast and flexible logger for Redis backend with tag'
'support'),
author='Roman Imankulov',
author_email='[email protected]',
url='http://github.com/imankulov/tagged-logger',
packages=['tagged_logger', ],
version='0.5',
license='BSD',
scripts=[
'scripts/tagged_logger_listen.py',
'scripts/tagged_logger_get.py',
],
install_requires=[
'redis',
'pytz',
],
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: System :: Logging',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
),
)