forked from bogdal/sentry-youtrack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.26 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.26 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from sentry_youtrack import VERSION
import os
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'test_settings')
install_requires = [
'sentry>=6.1.0',
'requests>=2.0.1',
'BeautifulSoup>=3.2.1',
]
setup(
name='sentry-youtrack',
version=VERSION,
author='Adam Bogdal',
author_email='adam@bogdal.pl',
url='http://github.com/bogdal/sentry-youtrack',
description='A Sentry extension which integrates with YouTrack',
long_description=open('README.rst').read(),
license='BSD',
packages=find_packages(),
install_requires=install_requires,
include_package_data=True,
zip_safe=False,
entry_points={
'sentry.apps': [
'sentry_youtrack = sentry_youtrack',
],
'sentry.plugins': [
'sentry_youtrack = sentry_youtrack.plugin:YouTrackPlugin'
],
},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python',
'License :: OSI Approved :: BSD License',
],
test_suite='sentry_youtrack.tests',
)