forked from moqada/django-js-error-logging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 885 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='django-js-error-logging',
version='0.1.1',
description='Logging Client-Side JavaScript errors for Django',
long_description=open('README.rst').read(),
author='Masahiko Okada',
author_email='[email protected]',
url='http://github.com/moqada/django-js-error-logging/',
keywords=['django', 'javascript', 'logging', 'notify'],
license='BSD License',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)