-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
40 lines (35 loc) · 1.11 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
39
40
# -*- coding: utf-8 -*-
from setuptools import setup
from glob import glob
from distutils.core import setup, Extension
setup(name="phash-graph-mvp",
version="1.0",
description="Graph a pHash MVP tree",
long_description="""
phash-graph-mvp is a small python script which use pHash ( http://www.phash.org/ )
to build a graphical representation of perceptual relation between images.
""",
url="http://packages.python.org/phash-graph-mvp/",
download_url="http://github.com/trolldbois/phash-graph-mvp/tree/master",
license='GPL',
classifiers=[
"Topic :: Multimedia",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GPL",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
],
keywords=['pHash','libphash'],
author="Loic Jaquemet",
author_email="[email protected]",
py_modules = ["pHash"],
# extras_require = {
# 'CACHE': ["python-memcached"],
# },
#setup_requires=[
# "nose",
# "sphinx",
#],
#test_suite='nose.collector',
)