-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 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
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
setup(
name="pytest-browser",
version='0.2.0',
description='A pytest plugin for console based browser test selection'
' just after the collection phase',
long_description=readme,
license='MIT',
author='Mehmet Gerceker',
author_email='[email protected]',
url='https://github.com/mehmetg/pytest-browser',
download_url='https://github.com/mehmetg/pytest-browser/archive/0.2.0.tar.gz',
platforms=['linux', 'macos'],
packages=['browser'],
entry_points={'pytest11': [
'browser = browser.plugin'
]},
zip_safe=False,
install_requires=['pytest>=2.7.0', 'urwid>=1.3.1'],
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',
'Environment :: Console',
],
keywords="py.test pytest plugin browse interactive",
)