forked from brncsk/sentry-auth-gitlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (49 loc) · 1.32 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
#!/usr/bin/env python
"""
sentry-auth-gitlab-v2
==================
:copyright: (c) 2015 Functional Software, Inc
"""
from __future__ import absolute_import
from setuptools import setup, find_packages
import os
tests_require = [
'pytest',
'mock',
]
install_requires = [
'sentry',
]
# The directory containing this file
HERE = os.path.dirname(os.path.realpath(__file__))
# The text of the README file
with open(HERE + "/README.rst", 'r') as f:
README = f.read()
setup(
name='sentry-auth-gitlab-v2',
version='0.2.4',
author='Zakhar Bessarab',
author_email='[email protected]',
url='https://github.com/zekker6',
description='Gitlab authentication provider for Sentry',
long_description=README,
long_description_content_type="text/markdown",
license='',
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_gitlab = auth_gitlab.apps.Config',
],
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)