#!/usr/bin/env python # -*- coding: utf-8 -*- """ Butterfly - A sleek web based terminal emulator """ from setuptools import setup __version__ = '3.0.1' options = dict( name="butterfly", version=__version__, description="A sleek web based terminal emulator", long_description="See http://github.com/paradoxxxzero/butterfly", author="Florian Mounier", author_email="paradoxxx.zero@gmail.com", url="http://github.com/paradoxxxzero/butterfly", license="GPLv3", platforms="Any", scripts=['butterfly.server.py', 'scripts/butterfly', 'scripts/b'], packages=['butterfly'], install_requires=["tornado>=3.2", "pyOpenSSL"], extras_require={ 'themes': ["libsass"], 'systemd': ['tornado_systemd'] }, package_data={ 'butterfly': [ 'sass/*.sass', 'themes/*.*', 'themes/*/*.*', 'themes/*/*/*.*', 'static/fonts/*', 'static/images/favicon.png', 'static/main.css', 'static/html-sanitizer.js', 'static/*.min.js', 'templates/index.html', 'bin/*', 'templates/motd', 'butterfly.conf.default' ] }, classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Terminals"]) setup(**options)