This repository was archived by the owner on Aug 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (43 loc) · 1.08 KB
/
setup.py
File metadata and controls
50 lines (43 loc) · 1.08 KB
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
#!/usr/bin/env python
from __future__ import absolute_import
"""
sentry-auth-github
==================
:copyright: (c) 2016 Functional Software, Inc
"""
from setuptools import setup, find_packages
install_requires = [
'sentry>=9.0.0',
]
test_requires = [
"pytest==4.6.5",
"pytest-cov==2.5.1",
]
setup(
name='sentry-auth-github',
version='0.1.0',
author='Sentry',
author_email='support@getsentry.com',
url='https://www.getsentry.com',
description='GitHub authentication provider for Sentry',
long_description=__doc__,
license='Apache 2.0',
packages=find_packages(exclude=['tests']),
zip_safe=False,
install_requires=install_requires,
extras_require={
'tests': test_requires,
},
include_package_data=True,
entry_points={
'sentry.apps': [
'auth_github = sentry_auth_github',
],
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)