-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (31 loc) · 1.01 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
from setuptools import setup
#def readme():
# with open('README.md') as f:
# return f.read()
setup(name='HMOBSTER',
version='0.0.43',
description='VAF clustering for multiple karyotypes',
url='https://github.com/Militeee/hmobster',
author='Salvatore Milite',
author_email='militesalvatore@gmail.com',
license='GPL-3.0',
packages=['mobster'],
install_requires=[
'matplotlib>=3.1',
'pandas>=1.0',
'pyro-ppl>=0.4',
'numpy>=1.18',
'scikit-learn',
],
include_package_data=True,
#long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
keywords='DNA sequencing clonal_evolution VAF',
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)