-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup_isb.py
39 lines (36 loc) · 1.54 KB
/
setup_isb.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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
PACKAGE_DATA = {
'miner2': ['data/*']
}
INSTALL_REQUIRES = ['numpy', 'scipy', 'pandas', 'sklearn', 'lifelines',
'matplotlib', 'seaborn', 'xgboost', 'pydot', 'graphviz']
setuptools.setup(
name="isb_miner2",
version="0.0.2",
author="Adrian Lopez Garcia de Lomana",
author_email="alomana@systemsbiology.org",
description="A newer version of MINER.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/baliga-lab/miner2",
packages=['miner2'],
install_requires = INSTALL_REQUIRES,
include_package_data=True, package_data=PACKAGE_DATA,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules"
],
scripts=['bin/miner2-coexpr', 'bin/miner2-mechinf',
'bin/miner2-bcmembers', 'bin/miner2-subtypes',
'bin/miner2-survival', 'bin/miner2-causalinf-pre',
'bin/miner2-causalinf-post', 'bin/miner2-neo', 'bin/miner2-riskclassifier'])