-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
33 lines (32 loc) · 1 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
from setuptools import setup
setup(
name="pytest-ipdb",
packages=["pytestipdb"],
version="0.1",
description="A py.test plug-in to enable drop to ipdb debugger on test failure.",
author="Matthew de Verteuil",
author_email="[email protected]",
url="https://github.com/mverteuil/pytest-ipdb",
classifiers=[
"Environment :: Console",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Communications :: Email",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Testing",
],
install_requires=[
'pytest>=2.6.3',
'ipdb',
],
# the following makes a plugin available to py.test
entry_points = {
"pytest11": [
"pytestipdb = pytestipdb.ptipdb",
]
},
)