File: setup.py

package info (click to toggle)
blurhash-python 1.1.4%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112 kB
  • sloc: python: 168; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 883 bytes parent folder | download
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',
      ])