Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KenjiKamimoto-ac committed Aug 28, 2021
1 parent 65809f2 commit f312763
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Binary file modified celloracle/data/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion celloracle/trajectory/modified_VelocytoLoom_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from .neighbors import (BalancedKNN, connectivity_to_weights,
convolve_by_sparse_weights,
knn_distance_matrix)
from velocyto.serialization import dump_hdf5, load_hdf5
#from velocyto.serialization import dump_hdf5, load_hdf5


#from tqdm.notebook import tqdm
Expand Down
2 changes: 1 addition & 1 deletion celloracle/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-


__version__ = '0.7.5'
__version__ = '0.8.0'
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
numpy
scipy
cython
numba==0.50.1
numba>=0.50.1
matplotlib
seaborn
scikit-learn
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from setuptools import setup, find_packages


with open("requirements.txt") as f:
required = f.read().splitlines()

Expand All @@ -16,10 +17,10 @@
"""


# Start install process
setup(
name='celloracle',
version="0.7.5",
version="0.8.0",
description='GRN analysis with single cell data',
long_description=readme,
python_requires='>=3.6',
Expand Down Expand Up @@ -60,5 +61,4 @@
"celloracle.data", "celloracle.go_analysis", "celloracle.oracle_utility",
"celloracle.motif_analysis", "celloracle.network_analysis", "celloracle.utility", "celloracle.applications", "celloracle.visualizations"],
entry_points={'console_scripts':['seuratToAnndata = celloracle.data_conversion.process_seurat_object:main']}

)

0 comments on commit f312763

Please sign in to comment.