Bug 1427062 - Adding Python 3 support for mozinstall. r=wlach

MozReview-Commit-ID: I3hiQdN1u79

--HG--
extra : rebase_source : 8b406507822518c43e236b56bd24b48ce4da5f7f
This commit is contained in:
Vedant Chakravadhanula 2017-12-28 10:47:53 +05:30
Родитель 8abb52257b
Коммит 54de7fd3de
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -10,7 +10,7 @@ from setuptools import setup
try:
here = os.path.dirname(os.path.abspath(__file__))
description = file(os.path.join(here, 'README.md')).read()
description = open(os.path.join(here, 'README.md')).read()
except IOError:
description = None
@ -34,7 +34,7 @@ setup(name='mozInstall',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only'],
'Programming Language :: Python :: 3'],
keywords='mozilla',
author='Mozilla Automation and Tools team',
author_email='tools@lists.mozilla.org',