-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
executable file
·107 lines (91 loc) · 2.13 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
requirements = [
"argh",
"attr",
"related",
"cloudpickle>=1.0.0",
"concise>=0.6.7",
"deepexplain",
# ml
"gin-config",
"keras==2.2.4",
"scikit-learn",
# "tensorflow",
# numerics
"h5py",
"numpy",
"pandas",
"scipy",
"statsmodels",
# Plotting
"matplotlib>=3.0.2",
"plotnine",
"seaborn",
# genomics
"pybigwig",
"pybedtools", # remove?
"modisco>=0.5.1.2",
# "pyranges",
"joblib",
"cloudpickle>=1.0.0", # - remove?
"kipoi>=0.6.8",
"kipoi-utils>=0.3.0",
"kipoiseq>=0.2.2",
"papermill",
"jupyter_client>=6.1.2",
"ipykernel",
"nbconvert>=5.5.0",
"vdom>=0.6",
# utils
"ipython",
"tqdm",
"pprint",
# Remove
"genomelake",
"pysam", # replace with pyfaidx
]
optional = [
"comet_ml",
"wandb",
"fastparquet",
"python-snappy",
"ipywidgets", # for motif simulation
]
test_requirements = [
"pytest>=3.3.1",
"pytest-cov>=2.6.1",
# "pytest-xdist",
"gdown", # download files from google drive
"virtualenv",
]
dependency_links = [
"deepexplain @ git+https://github.com/kundajelab/DeepExplain.git@#egg=deepexplain-0.1"
]
setup(
name="bpnet",
version='0.0.22',
description=("BPNet: toolkit to learn motif synthax from high-resolution functional genomics data"
" using convolutional neural networks"),
author="Ziga Avsec",
author_email="[email protected]",
url="https://github.com/kundajelab/bpnet",
packages=find_packages(),
install_requires=requirements,
extras_require={
"dev": test_requirements,
"extras": optional,
},
license="MIT license",
entry_points={'console_scripts': ['bpnet = bpnet.__main__:main']},
zip_safe=False,
keywords=["deep learning",
"computational biology",
"bioinformatics",
"genomics"],
test_suite="tests",
package_data={'bpnet': ['logging.conf']},
include_package_data=True,
tests_require=test_requirements
)