1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
__version__ = '0.5.1'
__license__ = 'MIT'
__author__ = 'Hayaki Saito'
import inspect
import os
filename = inspect.getfile(inspect.currentframe())
dirpath = os.path.abspath(os.path.dirname(filename))
long_description = open(os.path.join(dirpath, "README.rst")).read()
setup(name = 'libsixel-python',
version = __version__,
description = 'libsixel binding for Python',
long_description = long_description,
py_modules = ['libsixel'],
classifiers = ['Development Status :: 4 - Production/Stable',
'Topic :: Terminals',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python'
],
keywords = 'sixel libsixel terminal codec',
author = __author__,
author_email = 'saitoha@me.com',
url = 'https://github.com/saitoha/libsixel',
license = __license__,
packages = find_packages(exclude=[]),
zip_safe = False,
include_package_data = False,
install_requires = []
)
|