-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 698 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (24 loc) · 698 Bytes
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
"""Setup file for tensorbayes
For easy installation and uninstallation, do the following.
MANUAL INSTALL:
python setup.py install --record files.txt
UNINSTALL:
cat files.txt | xargs rm -r
"""
from setuptools import setup, find_packages
import os
setup(
name="tensorbayes",
version="0.4.0",
author="Rui Shu",
author_email="ruishu@stanford.edu",
url="http://www.github.com/RuiShu/tensorbayes",
download_url="https://github.com/RuiShu/tensorbayes/archive/0.4.0.tar.gz",
license="MIT",
description="Deep Variational Inference in TensorFlow",
install_requires = ['numpy'],
extras_require={
'notebook': ['jupyter']
},
packages=find_packages()
)