Bug 1421799 - [test_archive] Add 'mozterm' to common.tests.zip r=gbrown

This makes sure the mozterm module is available to the testers. The
setup.py was needed to it could be installed from requirements.txt.

This module does not yet live on pypi.

MozReview-Commit-ID: 9AL0EZ1uVgL
This commit is contained in:
2017-12-15 16:51:30 +00:00
parent 1c790dccd2
commit c68b23e9cf
3 changed files with 36 additions and 0 deletions

28
python/mozterm/setup.py Normal file
View File

@@ -0,0 +1,28 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from __future__ import absolute_import
from setuptools import setup
VERSION = '0.1.0'
DEPS = []
setup(
name='mozterm',
description='Terminal abstractions built around the blessings module.',
license='MPL 2.0',
author='Andrew Halberstadt',
author_email='ahalberstadt@mozilla.com',
url='',
packages=['mozterm'],
version=VERSION,
classifiers=[
'Environment :: Console',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Natural Language :: English',
],
install_requires=DEPS,
)