Skip to content

Commit

Permalink
setup.py added
Browse files Browse the repository at this point in the history
  • Loading branch information
ncullen93 committed Feb 23, 2016
1 parent ed884e1 commit f675534
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,14 @@
*.bkbn
.spyderworkspace
.spyderproject

# setup.py working directory
build
# sphinx build directory
doc/_build
# setup.py dist directory
dist
# Egg metadata
*.egg-info
.eggs
pyBN.egg-info
1 change: 0 additions & 1 deletion pyBN/learning/structure/tree/chow_liu.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
from pyBN.classes.bayesnet import BayesNet
import operator
import numpy as np
from numba import jit


def chow_liu(data,edges_only=False):
Expand Down
3 changes: 0 additions & 3 deletions pyBN/plotting/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 13 additions & 0 deletions setup.py
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()
)

0 comments on commit f675534

Please sign in to comment.