-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
24 lines (22 loc) · 966 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="ventiliser",
version="1.0.0",
author="David Chong Tian Wei",
author_email="[email protected]",
description="Provides a pipeline for segmenting pressure and flow data from ventilators into individual breaths with an attempt to identify sub-phases. Developed on data from neonates ventilated on Draeger ventilators",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/barrinalo/ventiliser",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Healthcare Industry",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=['pyqtgraph','numpy','pandas','atpbar','matplotlib'],
)