-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (29 loc) · 939 Bytes
/
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
from distutils.core import setup
from setuptools import find_packages
setup(
name='sentry-nameko',
version='0.1.2',
packages=find_packages(exclude=['test', 'test.*']),
url='http://github.com/onefinestay/sentry-nameko',
author='onefinestay',
author_email='engineering@onefinestay.com',
description='Integration helpers for Sentry and Nameko',
requires=['sentry'],
entry_points={
'sentry.apps': [
'pluginname = sentry_nameko',
]
},
include_package_data=True,
zip_safe=False,
license='Apache License, Version 2.0',
classifiers=[
"Programming Language :: Python",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
)