from setuptools import setup, find_packages | |
setup( | |
name="rp-reporter", | |
version="0.1.0", | |
author="Anna Arhipova", | |
author_email="harhipova@mirantis.com", | |
description="Reporting test results to the Report Portal", | |
long_description=open("README.md").read(), | |
long_description_content_type="text/markdown", | |
packages=find_packages(), | |
install_requires=[ | |
"xunitparser", | |
"reportportal-client", | |
"PyYAML", | |
"wget", | |
"jenkins-jinny @ git+https://github.com/annkapul/jenkins-jinny.git" | |
], | |
python_requires=">=3.9", | |
entry_points={ | |
"console_scripts": [ | |
"rp-reporter=rp_reporter.batch_reporter:cli", | |
], | |
}, | |
) |