forked from bryanhe/dynamic
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (26 loc) · 717 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (26 loc) · 717 Bytes
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
#!/usr/bin/env python3
"""Metadata for package to allow installation with pip."""
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
exec(open(os.path.join("echonet", "__version__.py")).read())
setuptools.setup(
name="echonet",
description="Interpretable AI for beat-to-beat cardiac function assessment.",
version=__version__,
url="https://echonet.github.io/dynamic",
packages=setuptools.find_packages(),
install_requires=[
"numpy",
"torch",
"torchvision",
"opencv-python",
"scikit-image",
"tqdm",
"sklearn"
],
classifiers=[
"Programming Language :: Python :: 3",
]
)