Bug 1428362 - Add Python 3 support to mozterm; r=ahal

MozReview-Commit-ID: CBl7XKXPABv
This commit is contained in:
Dave Hunt
2018-05-30 13:51:30 +01:00
parent 8661e0788e
commit cf46b26a3f
2 changed files with 9 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ from __future__ import absolute_import
from setuptools import setup
VERSION = '0.1.0'
DEPS = []
DEPS = ['six >= 1.10.0']
setup(
name='mozterm',
@@ -23,6 +23,10 @@ setup(
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
install_requires=DEPS,
)