-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.19 KB
/
setup.py
File metadata and controls
42 lines (38 loc) · 1.19 KB
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
# -*- coding: utf-8 -*-
"""
weppy-Sentry
------------
This extension provides integration for the
`Sentry <https://getsentry.com>`_ error reporting plaform in weppy framework.
"""
from setuptools import setup
setup(
name='weppy-Sentry',
version='0.4.1',
url='https://github.com/gi0baro/weppy-sentry',
license='BSD',
author='Giovanni Barillari',
author_email='gi0baro@d4net.org',
description='Sentry integration for weppy framework',
long_description=__doc__,
packages=['weppy_sentry'],
install_requires=[
'raven>=5.32.0',
'weppy>=1.0'
],
zip_safe=False,
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML'
],
)