mirror of
https://github.com/bendtherules/pytest_gui_status.git
synced 2026-08-18 13:42:26 +00:00
New requirement added: psutil - to check if pid is running on unix + windows plugin still doesnt start gui on start, test the func first
35 lines
931 B
Python
35 lines
931 B
Python
from setuptools import setup
|
|
|
|
packages = [
|
|
"pytest_gui_status",
|
|
# 'pytest_gui_status.plugin',
|
|
# 'pytest_gui_status.gui',
|
|
]
|
|
package_dir = {
|
|
'pytest_gui_status': 'pytest_gui_status',
|
|
# 'pytest_gui_status.plugin': 'status_plugin',
|
|
# 'pytest_gui_status.gui': 'status_gui',
|
|
}
|
|
|
|
setup(
|
|
name='pytest_gui_status',
|
|
version='0.0.3',
|
|
description='Show pytest status in gui',
|
|
author='Abhas Bhattacharya',
|
|
author_email='abhasbhattacharya2@gmail.com',
|
|
# url='http://github.com/joeyespo/pytest-watch',
|
|
packages=packages,
|
|
package_dir=package_dir,
|
|
license='MIT',
|
|
platforms='any',
|
|
install_requires=open('requirements.txt').readlines(),
|
|
entry_points={
|
|
# 'pytest11': [
|
|
# 'pytest_gui_status = pytest_gui_status.main',
|
|
# ],
|
|
'console_scripts': [
|
|
'pytest_gui_status = pytest_gui_status.status_gui.gui_frontend:main',
|
|
]
|
|
},
|
|
)
|