forked from seqcode/allo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 673 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 673 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
from setuptools import setup
#import warnings
#from pkg_resources import DeprecationWarning as pkg_warning
#warnings.simplefilter("ignore", pkg_warning)
setup(
name='bio-allo',
version='1.2.0',
author='Alexis Morrissey',
author_email='[email protected]',
packages=['Allo'],
python_requires='>=3.10',
scripts=['Allo/allo'],
url='https://github.com/seqcode/allo/archive/refs/tags/1.2.0.tar.gz',
license='LICENSE.txt',
description='A multi-mapped read rescue strategy for gene regulatory data',
include_package_data=True,
install_requires=[
'numpy',
'joblib',
'tensorflow>=2.17',
'pysam'
]
)