-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathsetup.py
26 lines (25 loc) · 1.11 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
from setuptools import find_packages, setup
setup(
name='ali',
version='0.1.0',
description='Code for the "Adversarially Learned Inference" paper',
long_description='Code for the "Adversarially Learned Inference" paper',
url='https://github.com/IshmaelBelghazi/ALI',
author='Vincent Dumoulin, Ishmael Belghazi',
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Image Recognition',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
keywords='theano blocks machine learning neural networks deep learning',
packages=find_packages(exclude=['scripts', 'experiments']),
install_requires=['numpy', 'theano', 'blocks', 'fuel'],
zip_safe=False)