forked from AppEnlight/appenlight-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.54 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
from setuptools import setup, find_packages
setup(name='appenlight_client',
version='0.6.17',
description='Client for Appenlight reporting - supporting WSGI and django (http://appenlight.com)',
classifiers=[
'Intended Audience :: Developers',
'License :: DFSG approved',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
],
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']
)