-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.38 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.38 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
38
39
40
41
42
43
44
"""
DeepMedico™ Sleep Breathing Irregularity Detection System
Setup script for package installation
"""
from setuptools import setup, find_packages
setup(
name="deepmedico-sleep-detection",
version="1.0.0",
description="Sleep breathing irregularity detection using deep learning",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="DeepMedico Team",
author_email="contact@deepmedico.com",
packages=find_packages(),
install_requires=[
"numpy>=1.21.0",
"pandas>=1.3.0",
"scipy>=1.7.0",
"matplotlib>=3.4.0",
"seaborn>=0.11.0",
"scikit-learn>=1.0.0",
"tensorflow>=2.8.0",
"pyarrow>=5.0.0",
],
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
entry_points={
"console_scripts": [
"deepmedico-vis=vis:main",
"deepmedico-dataset=create_dataset:main",
"deepmedico-model=modeling:main",
"deepmedico-sleep-stages=sleep_stage_classification:main",
],
},
)