-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 970 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
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
# Copyright (c) 2015-2017, Zhi Liu. All rights reserved.
from setuptools import setup
from setuptools import find_packages
setup(name='improc',
version='1.0.0',
description="A simple image process tool, \
especially for block or patch operation",
author='Zhi Liu',
author_email='[email protected]',
url='http://blog.csdn.net/enjoyyl',
download_url='https://github.com/',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'matplotlib'
],
extras_require={
'h5py': ['h5py'],
'visualize': ['pydot>=1.2.0'],
'tests': ['pytest',
'pytest-pep8',
'pytest-xdist',
'pytest-cov'],
},
keywords=[
'improc',
'Image Processing',
'Machine Learning',
'AI'
]
)