-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·31 lines (29 loc) · 1.02 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name='ventmap',
author='Gregory Rehm',
author_email='[email protected]',
version="1.5.3",
description='Ventilator Multi-Analytic Platform for analysis of ventilator waveform data',
python_requires=">=2.7",
packages=find_packages(exclude=["*tests*"]),
install_requires=[
'numpy',
'pandas',
'pathlib',
'prettytable',
'scipy',
],
entry_points={
'console_scripts': [
'anonymize_datetimes=ventmap.anonymize_datatimes:main',
'add_timestamp_to_vent_file=ventmap.add_timestamp_to_file:main',
'clear_null_bytes=ventmap.clear_null_bytes:main',
'cut_breath_section=ventmap.cut_breath_section:main',
'breath_meta=ventmap.breath_meta:main',
'preprocess_breath_files=ventmap.preprocess_all_files:main',
]
},
include_package_data=True,
)