forked from jmschrei/bpnet-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 834 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 834 Bytes
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
from setuptools import setup
setup(
name='bpnet-lite',
version='0.7.2',
author='Jacob Schreiber',
author_email='jmschreiber91@gmail.com',
packages=['bpnetlite'],
scripts=['bpnet', 'chrombpnet'],
url='https://github.com/jmschrei/bpnet-lite',
license='LICENSE.txt',
description='bpnet-lite is a minimal implementation of BPNet, a neural network aimed at interpreting regulatory activity of the genome.',
install_requires=[
"numpy >= 1.14.2",
"scipy >= 1.0.0",
"pandas >= 1.3.3",
"pyBigWig >= 0.3.17",
"torch >= 1.9.0",
"h5py >= 3.7.0",
"pyfaidx >= 0.7.2.1",
"tqdm >= 4.64.1",
"numba >= 0.55.1",
"seaborn >= 0.11.2",
"modisco-lite >= 2.0.0",
"joblib >= 1.3.2",
"tangermeme >= 0.2.0"
],
)