forked from jmschrei/tangermeme
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 737 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (27 loc) · 737 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='tangermeme',
version='1.0.0',
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",
"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"
],
)