ProtoPatient / setup.py
row56's picture
Upload setup.py
d2d3366 verified
raw
history blame contribute delete
308 Bytes
from setuptools import setup, find_packages
setup(
name="proto_patient",
version="0.1.0",
description="ProtoPatient multi-label classification model",
packages=find_packages(),
install_requires=[
"transformers>=4.0.0",
"torch>=1.8.0"
],
python_requires=">=3.7",
)