forked from AppEnlight/appenlight-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (58 loc) · 2.16 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import os
from setuptools import setup, find_packages
with open(os.path.join('appenlight_client', 'VERSION')) as _meta_version:
__version__ = _meta_version.read().strip()
setup(name='appenlight_client',
version=__version__,
description='Client for AppEnlight reporting - WSGI applications '
'and django monitoring (http://getappenlight.com)',
long_description=open("README.rst").read(),
keywords="monitoring, wsgi, django, flask, pylons, pyramid, debugging, "
"debug, reporting, errors, errormator, appenlight client, "
"sentry alternative",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: BFG',
'Framework :: CherryPy',
'Framework :: Django',
'Framework :: Flask',
'Framework :: Pylons',
'Framework :: Pyramid',
'Framework :: TurboGears',
'Framework :: Twisted',
'Framework :: Zope2',
'Framework :: Zope3',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
],
author='Marcin Lulek',
author_email='[email protected]',
license='BSD',
zip_safe=True,
packages=find_packages(),
include_package_data=True,
package_data={
'': ['*.txt', '*.rst', '*.ini'],
'appenlight_client': ['templates/*.ini'],
},
install_requires=[
'webob',
'requests',
'six'
],
entry_points="""
[paste.filter_app_factory]
main = appenlight_client.client:make_appenlight_middleware
appenlight = appenlight_client.client:make_appenlight_middleware
[console_scripts]
appenlight_client = appenlight_client.cli:cli_start
""",
test_suite='appenlight_client.tests',
use_2to3=True,
se_2to3_exclude_fixers=['lib2to3.fixes.next', 'lib2to3.fixes.fix_import']
)