blob: c94d35059d8d3fc9015e33cb7aa1c2f51cb14506 [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", # List dependencies here
"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",
],
},
)