File: setup.py

package info (click to toggle)
colorthief 0.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 112 kB
  • sloc: python: 337; makefile: 16
file content (40 lines) | stat: -rw-r--r-- 986 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
28
29
30
31
32
33
34
35
36
37
38
39
40
"""
Color Thief
-----------

A module for grabbing the color palette from an image.

Links
`````

* `github <https://github.com/fengsp/color-thief-py>`_
* `development version
  <http://github.com/fengsp/color-thief-py/zipball/master#egg=color-thief-py-dev>`_

"""
from setuptools import setup


setup(
    name='colorthief',
    version='0.2.1',
    url='https://github.com/fengsp/color-thief-py',
    license='BSD',
    author='Shipeng Feng',
    author_email='fsp261@gmail.com',
    description='A module for grabbing the color palette from an image.',
    long_description=__doc__,
    py_modules=['colorthief'],
    install_requires=[
        'Pillow'
    ],
    zip_safe=False,
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 2.7',
    ],
)