-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·49 lines (46 loc) · 1.73 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
#!/usr/bin/env python3
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='fastclone-guanlab',
version='1.0.9',
description='An inference tool for tumour subclonal composition',
long_description=long_description,
long_description_content_type="text/markdown",
author='Hongjiu Zhang, Yuanfang Guan, Yao Xiao',
url='http://github.com/GuanLab/FastClone_GuanLab',
license='GPLv3+',
keywords='bioinformatics',
python_requires='>=3.5.0',
packages=setuptools.find_packages(exclude=['tests']),
entry_points={
'console_scripts': [
'fastclone = fastclone.__main__:main',
],
},
package_data={
'fastclone': ['test/data/*'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
('License :: OSI Approved '
':: GNU General Public License v3 or later (GPLv3+)'),
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
#setup_requires=['pytest-runner'],
#tests_require=['pytest', 'pytest-datadir'],
install_requires=['logbook', 'pandas', 'scikit-learn', 'fire', 'networkx', 'matplotlib'],
)