-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (47 loc) · 1.23 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# from setuptools import find_packages, setup
# setup(
# name="covidlus",
# version="0.0.1",
# python_requires=">=3.7.0",
# install_requires=[
# "argparse",
# "numpy",
# "pandas",
# "pre-commit",
# "scikit-learn",
# "scipy",
# "seaborn",
# "setuptools==59.5.0",
# "tensorboard",
# "torch",
# "torchvision",
# "tqdm",
# "umap-learn",
# "opacus",
# "fastapi",
# "uvicorn"
# ],
# author="SIT-UOG",
# author_email="unknown",
# packages=find_packages(),
# include_package_data=True,
# )
"""Install package."""
from setuptools import setup, find_packages
setup(
name='pocovidnet',
version='0.0.1',
description=(
'Keras implementation of COVID19 detection models from POCUS data'
),
long_description=open('README.md').read(),
# url='https://github.com/jannisborn/medimg_covid_detecter',
author='Gary Tan SIT-UOG',
author_email='[email protected]',
install_requires=[
'numpy', 'tensorflow', 'scikit-learn', 'matplotlib', 'imutils',
'opencv-contrib-python', 'flask'
],
packages=find_packages('.'),
zip_safe=False,
)