Bug 1580312 - Refactor ResponsiveUI into its own module. r=mtigley
[gecko.git] / python / mozterm / setup.py
blob3227542a2ba7c981093af3d86f4875092eabb3bb
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 from __future__ import absolute_import
7 from setuptools import setup
9 VERSION = '1.0.0'
10 DEPS = ['six >= 1.10.0']
12 setup(
13 name='mozterm',
14 description='Terminal abstractions built around the blessings module.',
15 license='MPL 2.0',
16 author='Andrew Halberstadt',
17 author_email='ahalberstadt@mozilla.com',
18 url='',
19 packages=['mozterm'],
20 version=VERSION,
21 classifiers=[
22 'Environment :: Console',
23 'Development Status :: 3 - Alpha',
24 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
25 'Natural Language :: English',
26 'Programming Language :: Python :: 2',
27 'Programming Language :: Python :: 2.7',
28 'Programming Language :: Python :: 3',
29 'Programming Language :: Python :: 3.5',
31 install_requires=DEPS,