-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 773 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(name='ortho2align',
version='1.0.5',
description='ortho2align is a lncRNA ortholog discovery CLI tool based on syntenic regions and statistical assessment of alignment nonrandomness.',
url='http://github.com/dmitrymyl/ortho2align',
author='Dmitry Mylarshchikov',
author_email='dmitrymyl@gmail.com',
license='GPL-3.0',
packages=['ortho2align'],
install_requires=['numpy',
'pebble',
'scipy',
'sortedcontainers~=2.1.0',
'tqdm'],
python_requires='>=3.7',
entry_points={'console_scripts':
['ortho2align=ortho2align.cli_scripts:ortho2align']},
zip_safe=False)