forked from awentzonline/image-analogies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 859 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
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
setup(
name='neural-image-analogies',
version='0.0.11',
description='Generate image analogies with a deep neural network.',
author='Adam Wentz',
author_email='[email protected]',
url='https://github.com/awentzonline/image-analogies/',
packages=find_packages(),
scripts=[
'scripts/make_image_analogy.py'
],
install_requires=[
'Cython>=0.23.4',
'h5py>=2.5.0',
'Keras>=0.3.2',
'numpy>=1.10.4',
'Pillow>=3.1.1',
'PyYAML>=3.11',
'scipy>=0.17.0',
'scikit-learn>=0.17.0',
'six>=1.10.0',
'Theano>=0.8.0rc1',
],
dependency_links=[
'https://github.com/Theano/Theano.git@954c3816a40de172c28124017a25387f3bf551b2#egg=Theano'
]
)