from setuptools import setup | |
setup( | |
name='testplan-summary', | |
version='0.0.1', | |
packages=[], | |
url='', | |
license='', | |
author='oscore-qa', | |
author_email='', | |
description='', | |
requires_python=">=3.8", | |
install_requires=[ | |
'jira==3.5.2', | |
'testrail-api==1.8.0' | |
], | |
scripts=[ | |
'report.py', | |
] | |
) |