-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (39 loc) · 1.18 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='nameko-sentry',
version='1.0.0',
description='Nameko extension sends entrypoint exceptions to sentry',
author='Matt Bennett',
author_email='[email protected]',
url='http://github.com/nameko/nameko-sentry',
py_modules=['nameko_sentry'],
install_requires=[
"nameko>=2.5.1",
"raven>=3.0.0"
],
extras_require={
'dev': [
"coverage==4.0.3",
"flake8==3.3.0",
"pylint==1.8.2",
"pytest==2.8.3",
"objgraph==3.1.0"
]
},
zip_safe=True,
license='Apache License, Version 2.0',
classifiers=[
"Programming Language :: Python",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
)