-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 765 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 765 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
with open('README.rst') as readme_file:
readme = readme_file.read()
except IOError:
readme = None
setup(name='log2jsconsole',
version='0.4',
description='Simple WSGI middleware that helps to log messages into '
'JavaScript console object',
long_description=readme,
license='MIT License',
author='Hong Minhee',
author_email='dahlia' '@' 'stylesha.re',
url='https://github.com/StyleShare/log2jsconsole',
py_modules=['log2jsconsole'],
install_requires=['Werkzeug'],
entry_points="""
[paste.filter_app_factory]
main = log2jsconsole:make_middleware
""")