MEDICAL_ASSISTANT / setup.py
Abdullahrasheed45's picture
Upload setup.py
bd9136d verified
Raw
History Blame Contribute Delete
244 Bytes
from setuptools import find_packages, setup
setup(
name="MedAssistant",
version="0.0.1",
author="Abdullah",
author_email="Abdullahrasheed45@gmail.com",
packages=find_packages(),
install_requires=["langchain"]
)