blob: 3bf060b129e4219dbdc0367d31744c6751c5f58f [file] [log] [blame]
Anna Arhipovafa7e1ef2025-03-25 10:23:37 +01001from setuptools import setup, find_packages
2
3setup(
4 name="rp-reporter",
5 version="0.1.0",
6 author="Anna Arhipova",
7 author_email="harhipova@mirantis.com",
8 description="Reporting test results to the Report Portal",
9 long_description=open("README.md").read(),
10 long_description_content_type="text/markdown",
11 packages=find_packages(),
12 install_requires=[
Anna Arhipovad6df4892025-03-25 17:55:50 +010013 "xunitparser",
Anna Arhipova8ea549e2025-03-26 22:57:41 +010014 "reportportal-client>=5.6.2",
Anna Arhipovafa7e1ef2025-03-25 10:23:37 +010015 "PyYAML",
16 "wget",
17 "jenkins-jinny @ git+https://github.com/annkapul/jenkins-jinny.git"
18 ],
19 python_requires=">=3.9",
20 entry_points={
21 "console_scripts": [
22 "rp-reporter=rp_reporter.batch_reporter:cli",
23 ],
24 },
25)