mirror of
https://github.com/bendtherules/pytest_gui_status.git
synced 2026-08-18 21:52:18 +00:00
Things done: 1. Plugin part complete, needs tests 2. Installable with setup.py 3. Requirements.txt TBD: 1. Make the gui part 2. Restructure directories into plugin and gui 3. Add plugin tests 4. In setup.py, add pytest hook
28 lines
718 B
Python
28 lines
718 B
Python
from setuptools import setup, find_packages
|
|
|
|
# packages = [
|
|
# 'pontoon',
|
|
# 'pontoon.cmd'
|
|
# ]
|
|
# packages=packages,
|
|
# package_dir={'pontoon': 'pontoon'},
|
|
|
|
setup(
|
|
name='pytest_gui_status',
|
|
version='0.0.1',
|
|
description='Show pytest status in gui',
|
|
author='Abhas Bhattacharya',
|
|
author_email='abhasbhattacharya2@gmail.com',
|
|
# url='http://github.com/joeyespo/pytest-watch',
|
|
packages=["pytest_gui_status"],
|
|
package_dir={'pytest_gui_status': 'pytest_gui_status'},
|
|
license='MIT',
|
|
platforms='any',
|
|
install_requires=open('requirements.txt').readlines(),
|
|
entry_points={
|
|
# 'pytest11': [
|
|
# 'pytest_gui_status = pytest_gui_status.main',
|
|
# ]
|
|
},
|
|
)
|