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:
28
python/mozterm/setup.py
Normal file
28
python/mozterm/setup.py
Normal 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,
|
||||
)
|
||||
Reference in New Issue
Block a user