forked from rcmalli/keras-vggface
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
22 lines (22 loc) · 813 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
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/popsa-hq/keras-vggface',
author='Refik Can MALLI',
author_email="mallir@itu.edu.tr",
license='MIT',
keywords=['keras', 'vggface', 'deeplearning'],
packages=find_packages(exclude=["tools", "training", "temp", "test", "data", "visualize","image",".venv",".github"]),
zip_safe=False,
install_requires=[
'numpy', 'h5py', 'pillow',
'six>=1.9.0', 'pyyaml', 'tflite_support', 'coremltools', 'keras_applications',
"tensorflow"
],
extras_require={
"tf": ["tensorflow"],
"tf_gpu": ["tensorflow-gpu"],
})