Spaces:
Running
Running
from setuptools import setup, find_packages | |
setup( | |
name="drug-interaction-assistant", | |
version="0.1.0", | |
packages=find_packages(), | |
install_requires=[ | |
"streamlit>=1.22.0", | |
"torch>=2.0.0", | |
"transformers>=4.30.0", | |
"networkx>=3.0", | |
"matplotlib>=3.7.0", | |
"sentence-transformers>=2.2.0", | |
"scikit-learn>=1.2.0", | |
"pandas>=2.0.0", | |
"numpy>=1.24.0", | |
], | |
author="Drug Interaction Assistant Team", | |
author_email="uchihaoussama123@gmail.com", | |
description="A web application for analyzing drug interactions and providing drug information", | |
long_description=open("README.md").read(), | |
long_description_content_type="text/markdown", | |
url="https://github.com/OussamaOuldRouis/drug-drug-interaction", | |
classifiers=[ | |
"Programming Language :: Python :: 3", | |
"License :: OSI Approved :: MIT License", | |
"Operating System :: OS Independent", | |
], | |
python_requires=">=3.8", | |
) |