-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (30 loc) · 906 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
__version__ = "0.0.1"
setup(
name="fetalxbrainxmultiomics",
version=__version__,
packages=find_packages(),
install_requires=[
'loompy',
'numpy',
'scikit-learn',
'seaborn',
'numba==0.51.0',
'deeplift',
'twobitreader',
'captum',
'scipy',
'statsmodels',
'torch',
'pytorch-lightning',
'pybedtools',
'biopython'
## Install through bioconda ucsc-bedgraphtobigwig ucsc-genepredtobed ucsc-gtftogenepred ucsc-bigwigaverageoverbed
],
include_package_data=True,
author="Linnarsson Lab",
author_email="camiel.mannens@ki.se",
description="Notebooks and data accompanying the 'Dynamics of chromatin accessibility during human first-trimester neurodevelopment' paper",
license="MIT",
url="https://github.com/linnarsson-lab/fetal_brain_multiomics",
)