Bug 1746711 Part 2: Ensure the enqueued surface has a color space. r=gfx-reviewers...
[gecko.git] / python / mozterm / setup.py
blobbfbe291e66827646a2a16a163c20074abe48fe95
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.13.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,