Bug 1874684 - Part 17: Fix uninitialised variable warnings from clang-tidy. r=allstarschh
[gecko.git] / python / mozterm / setup.py
blob270e87077c24cc57dfec17c4bc16acacbc99854b
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
7 VERSION = "1.0.0"
8 DEPS = ["six >= 1.13.0"]
10 setup(
11 name="mozterm",
12 description="Terminal abstractions built around the blessed module.",
13 license="MPL 2.0",
14 author="Andrew Halberstadt",
15 author_email="ahalberstadt@mozilla.com",
16 url="",
17 packages=["mozterm"],
18 version=VERSION,
19 classifiers=[
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,