-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 722 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(name='bardic',
version='0.6.0',
description='A binomial RNA-DNA interaction caller.',
url='http://github.com/dmitrymyl/BaRDIC',
author='Dmitry Mylarshchikov',
author_email='dmitrymyl@gmail.com',
license='MIT',
packages=find_packages(),
install_requires=['numpy',
'scipy',
'pandas',
'bioframe>=0.3.0',
'tqdm',
'statsmodels',
'h5py'],
python_requires='>=3.8',
entry_points={'console_scripts':
['bardic=bardic.__main__:main']},
zip_safe=True)