-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ncullen93
committed
Feb 23, 2016
1 parent
ed884e1
commit f675534
Showing
4 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,12 +10,9 @@ | |
__author__ = """Nicholas Cullen <[email protected]>""" | ||
|
||
import networkx as nx | ||
import pydot | ||
import graphviz as gv | ||
from graphviz import dot | ||
import matplotlib.pyplot as plt | ||
import matplotlib.image as mpimg | ||
import pylab | ||
from networkx.drawing.nx_agraph import write_dot, graphviz_layout | ||
import subprocess | ||
import sys | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env python | ||
|
||
from distutils.core import setup | ||
from setuptools import find_packages | ||
|
||
setup(name='pyBN', | ||
version='0.1', | ||
description='Bayesian Networks in Python', | ||
author='Nicholas Cullen', | ||
author_email='[email protected]', | ||
url='sites.dartmouth.edu/ncullen', | ||
packages=find_packages() | ||
) |