-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
63 lines (57 loc) · 1.63 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
61
62
63
import sys
from setuptools import setup
packages = ['raygun4py', 'raygun4py.middleware']
base_dir = 'python2'
if sys.version_info[0] == 3:
base_dir = 'python3'
exec(open('%s/raygun4py/version.py' % base_dir).read())
requirements = [
'jsonpickle >= 0.9.2',
'blinker >= 1.3.0',
'requests >= 2.9.1'
]
dev_requirements = [
'unittest2 >= 1.1.0',
'coveralls >= 1.5.1',
'mock >= 2.0.0',
'django >= 1.8.8',
'flask >= 0.10',
'WebTest >= 2.0.32'
]
setup(
name='raygun4py',
version=__version__,
packages=packages,
package_dir={
"raygun4py": base_dir + "/raygun4py"
},
license='LICENSE',
url='https://raygun.com',
author='Raygun',
author_email='[email protected]',
description='Official Raygun provider for Python 2.7 and Python 3+',
long_description=open('README.rst').read(),
install_requires=requirements,
extras_require={
'dev': dev_requirements
},
entry_points={
'console_scripts': [
'raygun4py = raygun4py.cli:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Communications',
],
)