-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (23 loc) · 941 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
25
26
27
# Authors: Christian O'Reilly <[email protected]>
# License: MIT
from setuptools import setup
if __name__ == "__main__":
hard_dependencies = ('numpy', 'scipy')
install_requires = list()
with open('requirements.txt', 'r') as fid:
for line in fid:
req = line.strip()
for hard_dep in hard_dependencies:
if req.startswith(hard_dep):
install_requires.append(req)
setup(
name='uscecg',
version="0.0.1",
description="Code to woFunctions developed for ECG analysis at O'Reilly's lab, Institute of Artificial Intelligence of South Carolina, University of South Carolina.",
python_requires='>=3.5',
author="Christian O'Reilly",
author_email='[email protected]',
url='https://github.com/christian-oreilly/uscecg',
packages=['uscecg'],
install_requires=install_requires
)