setup.py (957B)
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 5 from setuptools import setup 6 7 VERSION = "1.0.0" 8 DEPS = [] 9 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", 28 ], 29 install_requires=DEPS, 30 )