From f3127634e7236eea3d004ec2352c72b4c57953c2 Mon Sep 17 00:00:00 2001 From: KenjiKamimoto-wustl122 Date: Sat, 28 Aug 2021 17:36:36 -0500 Subject: [PATCH] update setup.py --- .../data/__pycache__/__init__.cpython-36.pyc | Bin 1098 -> 1103 bytes .../trajectory/modified_VelocytoLoom_class.py | 2 +- celloracle/version.py | 2 +- requirements.txt | 2 +- setup.py | 6 +++--- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/celloracle/data/__pycache__/__init__.cpython-36.pyc b/celloracle/data/__pycache__/__init__.cpython-36.pyc index ae36bfdfe83cb0a16ab62437c089caabf2439bc7..66ae27ea87bc6f262c8e57111a75e94918b9a798 100644 GIT binary patch delta 32 ncmX@bah`+Kn3tC;cq8i>W?nD-(BjmhV*Tv++@ylZH<=3oocs!o delta 27 icmX@laf*Z0n3tD}Ya{C!W)4^VjQreG{p`v2m=0.50.1 matplotlib seaborn scikit-learn diff --git a/setup.py b/setup.py index c776293..97ca5d1 100755 --- a/setup.py +++ b/setup.py @@ -2,6 +2,7 @@ from setuptools import setup, find_packages + with open("requirements.txt") as f: required = f.read().splitlines() @@ -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', @@ -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']} - )