blob: 3bf060b129e4219dbdc0367d31744c6751c5f58f [file] [log] [blame]
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>=5.6.2",
"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",
],
},
)