forked from lospooky/pyblur
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 1.02 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='pyblur3',
version = '0.1.1',
description = 'Image blurring routines',
long_description = long_description,
keywords = 'blur',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'Topic :: Multimedia :: Graphics'],
url='http://github.com/desmoteo/pyblur3',
author='Matteo Ferrabone',
author_email='matteo.ferrabone@gmail.com',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires = ['numpy', 'pillow', 'scikit-image', 'scipy'],
zip_safe = False)