-
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) · 805 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 805 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
import re
from setuptools import setup, find_packages
from deepRloopPre._version import __version__
setup(
name='deepRloopPre',
version=__version__,
author='LiKuan',
author_email="396777306@qq.com",
packages=find_packages(),
scripts=['bin/deepRloopData.py','bin/deepRloopTrain.py','bin/deepRloopPredict.py','bin/deepRloopEval.py'],
#include_package_data=True,
url='https://github.com/PEHGP/deepRloopPre',
license='GPL-3.0',
description='A tool for predicting R-loop profiles and R-loop locations.',
long_description='',
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
install_requires=[
"pandas >= 1.1.3",
"biopython >=1.78",
"matplotlib==3.2.2",
"tensorflow==2.4.1",
"scikit-learn>=0.23.2",
],
zip_safe=False,
)