from setuptools import setup, find_packages setup( name='cyberops_dashboard', version='0.1.0', packages=find_packages(), install_requires=[ 'streamlit==1.25.0', 'huggingface_hub==0.22.2', 'plotly==5.17.0', 'networkx==3.1', 'matplotlib==3.8.0', 'numpy==1.25.2', 'pandas==2.1.1', 'dask[dataframe]==2023.4.0', 'python-dotenv==1.0.0', ], entry_points={ 'console_scripts': [ 'cyberops_dashboard=app:main', ], }, )