-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (36 loc) · 1.12 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
# encoding: utf-8
from setuptools import setup
readme = open('README.rst').read()
setup(
name="pytest-bpdb",
packages=["pytestbpdb"],
version="0.1.5.dev0",
description="A py.test plug-in to enable drop to bpdb debugger on test failure.",
long_description=readme,
author="Sławek Ehlert",
author_email="[email protected]",
url="https://github.com/slafs/pytest-bpdb",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"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',
'bpython',
],
# the following makes a plugin available to py.test
entry_points = {
"pytest11": [
"pytestbpdb = pytestbpdb.ptbpdb",
]
},
)