forked from DylanLukes/colorweave
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (34 loc) · 1.21 KB
/
setup.py
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
#!/usr/bin/env python
from distutils.core import setup
import sys, os, multiprocessing
requires = []
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='colorweave',
version='0.1',
description="Extract dominant colors from an image as a color palette",
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: Free for non-commercial use",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
install_requires=(
'Pillow>=1.7.8',
'colormath>=2.0.0',
'webcolors>=1.4',
),
keywords='color dominant palette colorweave kmeans css3 css21 name webcolors',
author='Jyotiska NK',
author_email='[email protected]',
url='http://github.com/jyotiska/colorweave',
py_modules=['colorweave'],
scripts=['colorweave.py'],
)