forked from getsentry/sentry-auth-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.01 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
#!/usr/bin/env python
"""
sentry-auth-ragtag
==================
:copyright: (c) 2018 Ragtag LLC
"""
from setuptools import find_packages, setup
install_requires = ["sentry>=7.0.0"]
tests_require = ["mock", "flake8>=2.0,<2.1"]
setup(
name="sentry-auth-ragtag",
version="0.2.0",
author="Ragtag",
author_email="[email protected]",
url="https://ragtag.org",
description="Ragtag authentication provider for Sentry",
long_description="Ragtag authentication provider for Sentry",
license="Apache 2.0",
packages=find_packages(exclude=["tests"]),
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={"tests": tests_require},
include_package_data=True,
entry_points={"sentry.apps": ["auth_ragtag = sentry_auth_ragtag"]},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development",
],
)