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/.
4
5from __future__ import absolute_import
6
7from setuptools import setup
8
9VERSION = "1.0.0"
10DEPS = ["six >= 1.13.0"]
11
12setup(
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",
30    ],
31    install_requires=DEPS,
32)
33