forked from jmschrei/tangermeme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 760 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 760 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
29
from setuptools import setup
setup(
name='tangermeme',
version='0.5.1',
author='Jacob Schreiber',
author_email='jmschreiber91@gmail.com',
packages=['tangermeme'],
#scripts=['cmd/tangermeme'],
url='https://github.com/jmschrei/tangermeme',
license='LICENSE.txt',
description='Biological sequence analysis for the modern age.',
install_requires=[
"numpy >= 1.14.2, <= 2.0.1",
"scipy >= 1.0.0",
"pandas >= 1.3.3",
"pyBigWig >= 0.3.17",
"torch >= 1.9.0",
"pybigtools",
"pyfaidx >= 0.7.2.1",
"tqdm >= 4.64.1",
"numba >= 0.55.1",
"logomaker",
"joblib >= 1.3.2",
"scikit-learn >= 1.2.2",
"matplotlib",
"memelite"
],
)