Skip to content

Commit b4cd85e

Browse files
committed
bump up version to 1.0.0
1 parent 87ea21b commit b4cd85e

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

setup.cfg

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
[metadata]
22
description-file = README.rst
3+
4+
[sdist]
5+
formats=gztar
6+
7+
[bdist_wheel]
8+
universal = 1

setup.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,32 @@ def read_file(fname):
66
return open(os.path.join(os.path.dirname(__file__), fname)).read()
77

88

9-
version = "0.2.3"
9+
version = "1.0.0"
10+
tar_url = "https://github.com/reportportal/agent-python-pytest/tarball/1.0.0"
11+
1012
requirements = [
11-
"reportportal-client>=2.5.4",
13+
"reportportal-client>=3.0.0",
1214
"pytest>=3.0.7",
13-
"six>=1.10.0"]
15+
"six>=1.10.0",
16+
]
17+
1418

1519
setup(
1620
name="pytest-reportportal",
1721
version=version,
18-
description="Agent for Reporting results of tests to the Report Portal server",
22+
description="Agent for Reporting results of tests to the Report Portal",
1923
long_description=read_file("README.rst") + "\n\n",
2024
author="Pavel Papou",
2125
author_email="[email protected]",
2226
url="https://github.com/reportportal/agent-python-pytest",
23-
packages=['pytest_reportportal'],
27+
download_url=tar_url,
28+
packages=["pytest_reportportal"],
2429
install_requires=requirements,
2530
license="GNU General Public License v3",
2631
keywords=["testing", "reporting", "reportportal", "pytest"],
2732
classifiers=[
2833
"Framework :: Pytest",
2934
"Programming Language :: Python :: 2.7",
30-
"Programming Language :: Python :: 3.0",
3135
"Programming Language :: Python :: 3.3",
3236
"Programming Language :: Python :: 3.4",
3337
"Programming Language :: Python :: 3.5",

0 commit comments

Comments
 (0)