-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (31 loc) · 1.08 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
from setuptools import setup
from setuptools.extension import Extension
setup(
name='precise',
version='1.3',
description='Patient Response Estimation Corrected by Interpolation of Subspaces Embeddings',
author='Soufiane Mourragui',
author_email='s.mourragui@nki.nl',
url='https://github.com/NKI-CCB/PRECISE',
classifiers=[
'Development Status :: 3 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Computational Biology',
'Topic :: Scientific/Engineering :: Cancer Research',
'Topic :: Scientific/Engineering :: Cancer Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 3.7'
],
install_requires=[
'joblib==1.2.0',
'numpy==1.22.0',
'pandas==1.1.5',
'scikit-learn==0.24.1',
'scipy==1.10.0',
'six==1.15.0'
],
ext_modules=[],
packages=['precise']
)