forked from rcmalli/keras-vggface
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
20 lines (20 loc) · 802 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
exec(open('keras_vggface/version.py').read())
setup(name='keras_vggface',
version=__version__,
description='VGGFace implementation with Keras framework',
url='https://github.com/rcmalli/keras-vggface',
author='Refik Can MALLI',
author_email = "[email protected]",
license='MIT',
keywords = ['keras', 'vggface', 'deeplearning'],
packages=find_packages(exclude=["temp", "test", "data", "visualize"]),
zip_safe=False,
install_requires=['numpy>=1.9.1',
'scipy>=0.14',
'h5py',
'pillow',
'tensorflow',
'keras',
'six>=1.9.0',
'pyyaml'])