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
|
from setuptools import setup
test_deps = ['pytest', 'Pillow', 'numpy']
extras = {
"test": test_deps
}
setup(name='blurhash',
version='1.1.4',
description='Pure-Python implementation of the blurhash algorithm.',
packages=['blurhash'],
install_requires=[],
tests_require=test_deps,
extras_require=extras,
url='https://github.com/halcy/blurhash-python',
author='Lorenz Diener',
author_email='lorenzd+blurhashpypi@gmail.com',
license='MIT',
keywords='blurhash graphics web_development',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Graphics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
])
|