mirror of
https://github.com/bendtherules/pytest_gui_status.git
synced 2026-08-18 13:42:26 +00:00
Add work done till now
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
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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',
|
||||
# ]
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user