File size: 537 Bytes
9188f7a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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',
        ],
    },
)