@@ -7,41 +7,41 @@ def read_file(fname):
77 return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
88
99
10- version = " 1.1.0"
11- tar_url = " https://github.com/reportportal/agent-python-pytest/tarball/1.0.0"
10+ version = ' 1.1.0'
11+ tar_url = ' https://github.com/reportportal/agent-python-pytest/tarball/1.0.0'
1212
1313
1414requirements = [
15- " reportportal-client>=3.0.0" ,
16- " pytest>=3.0.7" ,
17- " six>=1.10.0" ,
15+ ' reportportal-client>=3.0.0' ,
16+ ' pytest>=3.0.7' ,
17+ ' six>=1.10.0' ,
1818]
1919
2020
2121setup (
22- name = " pytest-reportportal" ,
22+ name = ' pytest-reportportal' ,
2323 version = version ,
24- description = " Agent for Reporting results of tests to the Report Portal" ,
25- long_description = read_file (" README.rst" ) + " \n \n " ,
26- author = " Pavel Papou" ,
27- 28- url = " https://github.com/reportportal/agent-python-pytest" ,
24+ description = ' Agent for Reporting results of tests to the Report Portal' ,
25+ long_description = read_file (' README.rst' ) + ' \n \n ' ,
26+ author = ' Pavel Papou' ,
27+ 28+ url = ' https://github.com/reportportal/agent-python-pytest' ,
2929 download_url = tar_url ,
30- packages = [" pytest_reportportal" ],
30+ packages = [' pytest_reportportal' ],
3131 install_requires = requirements ,
32- license = " GNU General Public License v3" ,
33- keywords = [" testing" , " reporting" , " reportportal" , " pytest" ],
32+ license = ' GNU General Public License v3' ,
33+ keywords = [' testing' , ' reporting' , ' reportportal' , ' pytest' ],
3434 classifiers = [
35- " Framework :: Pytest" ,
36- " Programming Language :: Python :: 2.7" ,
37- " Programming Language :: Python :: 3.3" ,
38- " Programming Language :: Python :: 3.4" ,
39- " Programming Language :: Python :: 3.5" ,
40- " Programming Language :: Python :: 3.6"
35+ ' Framework :: Pytest' ,
36+ ' Programming Language :: Python :: 2.7' ,
37+ ' Programming Language :: Python :: 3.3' ,
38+ ' Programming Language :: Python :: 3.4' ,
39+ ' Programming Language :: Python :: 3.5' ,
40+ ' Programming Language :: Python :: 3.6'
4141 ],
4242 entry_points = {
43- " pytest11" : [
44- " pytest_reportportal = pytest_reportportal.plugin" ,
43+ ' pytest11' : [
44+ ' pytest_reportportal = pytest_reportportal.plugin' ,
4545 ]
4646 },
4747)
0 commit comments