-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (35 loc) · 1.04 KB
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
from setuptools import setup, find_packages
install_requires=[
'numpy>=1.18.0',
'pandas>=1.0.0',
'matplotlib>=3.1.0',
'seaborn>=0.10.0',
'scipy>=1.4.0',
'statannot>=0.2.3',
'findpeaks>=1.0.5',
'pytest>=5.0.0',
'scikit-learn>=0.22.0',
'matplotlib-venn'
]
setup(
name='malaria-clones',
version='1.0.0',
description='A pipeline for peak detection in malaria parasitemia time-series and analysis of malaria clones',
author='Ingrid Vanessa Mora Sanchez',
author_email='i.moras@uniandes.edu.com',
url='https://github.com/ingridvmoras/malaria-clones',
packages=find_packages(),
install_requires=install_requires,
entry_points={
'console_scripts': [
'peak-finder=peak_finder.main:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
license_files=["LICEN[CS]E*"],
python_requires='>=3.6',
)