@@ -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+
1012requirements = [
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
1519setup (
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" ,
21252226 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