Import report.py for implement summary table
Related_prod: PRODX-41267
Change-Id: I99cb11e5d6b81f3c7467be50eb4810416164ffce
diff --git a/testplan_summary/setup.py b/testplan_summary/setup.py
new file mode 100644
index 0000000..a92906a
--- /dev/null
+++ b/testplan_summary/setup.py
@@ -0,0 +1,20 @@
+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',
+ ]
+)