-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (27 loc) · 921 Bytes
/
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
from setuptools import setup
__version__ = '1.4.2'
setup(
name='vizhash',
packages=['vizhash'],
version=__version__,
description=('Python Visual Hash,'
'generate a visual random image associated with a string.'),
author='luxcem',
author_email='[email protected]',
url='https://github.com/luxcem/vizhash',
download_url='https://github.com/luxcem/vizhash/tarball/{}'.format(
__version__),
keywords='visual hash vizhash random maze identicon',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
install_requires=['Pillow'],
entry_points={
'console_scripts': [
'vizhash = vizhash.vizhash:entrypoint',
],
},
tests_require=['Pillow', 'pytest', 'pytest-cov'])