-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
55 lines (50 loc) · 1.57 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""
setup.py
author: Simone Zaccaria
date: 2021-01-15
"""
import setuptools
from setuptools import setup
setuptools.setup(
name='decifer',
version='v2.1.4',
python_requires='>=3.8',
packages=['decifer'],
package_dir={'': 'src'},
author='Simone Zaccaria and Gryte Satas and Mohammed El-Kebir',
author_email='zaccaria@ucl.ac.uk and gsatas7@gmail.com and melkebir@illinois.edu',
description='DeCiFer is an algorithm that simultaneously selects mutation multiplicities and clusters SNVs by their corresponding descendant cell fractions (DCF).',
url='https://github.com/raphael-group/decifer',
install_requires=[
'numpy>=1.16.1',
'scipy>=1.2.1',
'pandas',
'lemon',
'seaborn>=0.7.1',
'scikit-learn>=1.1.1'
],
include_package_data = True,
package_data = {
'' : ['*.txt']
},
license='BSD',
platforms=["Linux", "MacOs", "Windows"],
classifiers=[
'Programming Language :: Python :: 3.7',
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords=[
'scientific',
'sequence analysis',
'cancer',
'somatic mutations'
'DNA',
'SNVs'],
entry_points={'console_scripts': ['decifer=decifer.__main__:main',
'fitbeta=decifer.generator:main']}
)