-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (30 loc) · 848 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
31
from setuptools import setup
setup(
name='pytest-pudb',
license='MIT',
description='Pytest PuDB debugger integration',
author='Michael Elovskikh',
author_email='wronglink@gmail.com',
url='https://github.com/wronglink/pytest-pudb',
long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),
version='0.7.0',
py_modules=['pytest_pudb'],
entry_points={'pytest11': ['pudb = pytest_pudb']},
install_requires=[
'pytest>=2.0',
'pudb',
],
extras_require={
'dev': [
'pexpect',
'tox',
'flake8',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Testing',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
]
)