Canstralian commited on
Commit
9188f7a
·
verified ·
1 Parent(s): 9fe5c20

Create setup.py

Browse files
Files changed (1) hide show
  1. setup.py +23 -0
setup.py ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='cyberops_dashboard',
5
+ version='0.1.0',
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ 'streamlit==1.25.0',
9
+ 'huggingface_hub==0.22.2',
10
+ 'plotly==5.17.0',
11
+ 'networkx==3.1',
12
+ 'matplotlib==3.8.0',
13
+ 'numpy==1.25.2',
14
+ 'pandas==2.1.1',
15
+ 'dask[dataframe]==2023.4.0',
16
+ 'python-dotenv==1.0.0',
17
+ ],
18
+ entry_points={
19
+ 'console_scripts': [
20
+ 'cyberops_dashboard=app:main',
21
+ ],
22
+ },
23
+ )