-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·59 lines (54 loc) · 1.96 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
#!/usr/bin/env python3
# Installs dogslow.
import os
import sys
from setuptools import setup
def long_description():
"""Get the long description from the README"""
return open(os.path.join(sys.path[0], "README.rst")).read()
setup(
author="Marti Raudsepp",
author_email="[email protected]",
python_requires=">=3.8",
classifiers=[
"Development Status :: 6 - Mature",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.2",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
(
"License :: OSI Approved :: "
"GNU Library or Lesser General Public License (LGPL)"
),
"Natural Language :: English",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Debuggers",
"Topic :: Utilities",
],
description="A Django middleware that logs tracebacks of slow requests to Sentry.",
keywords="django debug watchdog middleware traceback sentry",
license="GNU LGPL",
long_description=long_description(),
long_description_content_type="text/x-rst",
name="dogslow-sentry",
packages=["dogslow_sentry"],
url="https://github.com/intgr/dogslow-sentry",
project_urls={
"Release notes": "https://github.com/intgr/dogslow-sentry/blob/main/README.rst#changelog",
},
install_requires=["django>=2.2", "sentry-sdk>=1.0"],
version="2.0.1",
)