medical-chatbot / setup.py
tta1301's picture
Update
60cfa0c verified
raw
history blame contribute delete
298 Bytes
from setuptools import setup, find_packages
setup(
name='ChatbotMedical',
version='0.1',
author='Theanh13012004',
author_email='[email protected]',
description='A chatbot for medical news',
packages=find_packages(),
install_requires=[
],
)