forked from blei-lab/edward
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 1.1 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
27
28
from setuptools import setup
# import `__version__` from code base
exec(open('edward/version.py').read())
setup(
name='edward',
version=__version__,
description='A library for probabilistic modeling, inference, and '
'criticism',
author='Dustin Tran',
author_email="dustin@cs.columbia.edu",
packages=['edward', 'edward.criticisms', 'edward.inferences',
'edward.models', 'edward.stats', 'edward.util'],
install_requires=['tensorflow>=0.11.0rc0',
'numpy>=1.7',
'six>=1.10.0'],
extras_require={'stan': ['pystan>=2.0.1.3'],
'pymc3': ['pymc3>=3.0'],
'model wrappers': ['scipy>=0.16'],
'neural networks': ['keras>=1.0.0', 'prettytensor>=0.5.3'],
'visualization': ['progressbar>=2.0']},
url='http://edwardlib.org',
license='Apache License 2.0',
classifiers=['License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'],
)