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 setuptools
import setup
8 DEPS
= ["six >= 1.13.0"]
12 description
="Terminal abstractions built around the blessed module.",
14 author
="Andrew Halberstadt",
15 author_email
="ahalberstadt@mozilla.com",
20 "Environment :: Console",
21 "Development Status :: 3 - Alpha",
22 "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
23 "Natural Language :: English",
24 "Programming Language :: Python :: 2",
25 "Programming Language :: Python :: 2.7",
26 "Programming Language :: Python :: 3",
27 "Programming Language :: Python :: 3.5",
29 install_requires
=DEPS
,