forked from microsoft/Multiverso
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 1.12 KB
/
setup.py
File metadata and controls
30 lines (26 loc) · 1.12 KB
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
from setuptools import setup
import os
def readme():
with open('README.md') as f:
return f.read()
setup(name='multiverso-python',
version='0.0.1',
long_description=readme(),
description="Multiverso is a parameter server framework for distributed"
" machine learning. This package can leverage multiple machines and GPUs"
" to speed up the python programs.",
url='https://github.com/Microsoft/multiverso',
author='Microsoft',
license='MIT',
packages=['multiverso', 'multiverso.theano_ext', 'multiverso.theano_ext.lasagne_ext'],
# TODO: The lasagne on pypi is too old. multiverso need some functions in
# lasagne-0.2 which is not released yet. Please replace the dev version
# with the stable release later.
dependency_links = ['https://github.com/Lasagne/Lasagne/tarball/master#egg=lasagne-0.2.dev1'],
install_requires=["theano>=0.8.2", "lasagne==0.2.dev1"],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 2",
],
zip_safe=False)