Skip to content

Commit

Permalink
Update readme file.
Browse files Browse the repository at this point in the history
  • Loading branch information
ruochiz committed Jul 11, 2022
1 parent b8b21cc commit 0b76ad7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
from setuptools import setup, find_packages
print (find_packages())
setup(
name='fast-higashi',
version='0.0.1a0',
description='Fast-Higashi: Ultrafast and interpretable single-cell 3D genome analysis',
url='https://github.com/ma-compbio/Fast-Higashi',
include_package_data=True,
python_requires='>=3.9',
packages=find_packages(),
install_requires=[
'numpy>=1.21.2',
'scipy==1.7.3',
'pandas==1.3.4',
'cython>=0.29.24',
'torch>=1.8.0',
'scikit-learn>=0.23.2',
'tqdm',
'h5py',
'seaborn>=0.11.2',
'umap-learn>=0.5',
'opt_einsum'
],
extras_require={},
author='Ruochi Zhang',
author_email='ruochiz@andrew.cmu.edu',
license='MIT'
)

0 comments on commit 0b76ad7

Please sign in to comment.