from setuptools import setup, find_packages | |
setup( | |
name="rp-reporter", | |
setup_requires=['pbr==5.6.0'], | |
pbr=True, | |
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", | |
], | |
}, | |
) |