-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.11 KB
/
setup.py
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
29
30
31
32
33
34
35
36
#! /usr/bin/env python
from setuptools import setup, find_packages
version = '1.0.0'
dl_version = 'master' if 'dev' in version else '{}'.format(version)
setup(
name='DeltaMSI',
version=version,
author='Koen Swaerts',
author_email='koen.swaerts@azdelta.be',
description="DeltaMSI: artificial intelligence-based modeling of microsatellite instability scoring on next-generation sequencing data",
long_description=__doc__,
keywords=['bioinformatics', 'biology', 'sequencing', 'NGS', 'next generation sequencing',
'MSI', 'microsatellite instability'],
download_url='https://github.com/RADar-AZDelta/DeltaMSI/archive/refs/tags/v{}.tar.gz'.format(
dl_version),
license='GNU General Public License v3.0',
packages=find_packages('.'),
python_requires='>=3.7',
include_package_data=True,
zip_safe=False,
install_requires=[
'pandas',
'numpy',
'pysam',
'matplotlib',
'scikit-learn',
'seaborn',
'tqdm',
'openpyxl'
],
entry_points={
'console_scripts': ['DeltaMSI = deltamsi.app:main']
}
)