Skip to content

Commit

Permalink
fixed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dunovank committed Feb 7, 2019
1 parent 83a2ae2 commit 6ad36a9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cbgt/analyzefx.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
import bgNetwork.netgen as ng
import cbgt.netgen as ng
import numpy as np
import pandas as pd

Expand Down
2 changes: 1 addition & 1 deletion cbgt/sim.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import numpy as np
import pandas as pd
import bgNetwork.netgen as ng
import cbgt.netgen as ng
import random
import warnings

Expand Down
2 changes: 1 addition & 1 deletion cbgt/vis.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import numpy as np
import pandas as pd
from bgNetwork.analyzefx import *
from cbgt.analyzefx import *
from scipy.stats.distributions import norm
from scipy.stats import truncnorm
import matplotlib.pyplot as plt
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@
from setuptools import Extension
import numpy as np

# UPDATE PYPI RELEASE (Version Update)
# pip install --upgrade setuptools wheel twine
# python setup.py sdist bdist_wheel; twine upload dist/cbgt-0.0.1*

ext_modules = [Extension('cbgt', ['src/cbgt.c'])]
package_data = {'cbgt': ['src/*.c', 'src/*.h', 'docs/*.md',
'docs/*.txt', 'params/*.py', 'params/*.tex']}
cbgt_packages = ['cbgt', 'cbgt.src']

setup(
name='CBGT',
version='0.0.1',
version='0.0.2',
author='Kyle Dunovan, Catalina Vich, Matthew Clapp, Timothy Verstynen, Jonathan Rubin, Wei Wei, and Xiao Jing Wang',
author_email='dunovank@gmail.com',
url='http://github.com/CoAxLab/bgNetwork',
Expand Down

0 comments on commit 6ad36a9

Please sign in to comment.