-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
37 lines (33 loc) · 1.13 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
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
setup(
name="pytest-interactive",
version='0.1.4',
description='A pytest plugin for console based interactive test selection'
' just after the collection phase',
long_description=readme,
license='MIT',
author='Tyler Goodlet',
author_email='tgoodlet@gmail.com',
url='https://github.com/tgoodlet/pytest-interactive',
platforms=['linux'],
packages=['interactive'],
entry_points={'pytest11': [
'interactive = interactive.plugin'
]},
zip_safe=False,
install_requires=['pytest>=2.4.2', 'ipython>=5.0'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Environment :: Console',
],
)