Pavel Glazov | 21812c3 | 2024-05-03 04:50:17 -0700 | [diff] [blame^] | 1 | from setuptools import setup |
2 | |||||
3 | setup( | ||||
4 | name='testplan-summary', | ||||
5 | version='0.0.1', | ||||
6 | packages=[], | ||||
7 | url='', | ||||
8 | license='', | ||||
9 | author='oscore-qa', | ||||
10 | author_email='', | ||||
11 | description='', | ||||
12 | requires_python=">=3.8", | ||||
13 | install_requires=[ | ||||
14 | 'jira==3.5.2', | ||||
15 | 'testrail-api==1.8.0' | ||||
16 | ], | ||||
17 | scripts=[ | ||||
18 | 'report.py', | ||||
19 | ] | ||||
20 | ) |