-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 742 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
import os
import sys
# Add backend directory to path to import version
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
from backend.version import __version__, __author__, __description__, __license__
setup(
name='RansomwareDetector',
version=__version__,
packages=find_packages(),
include_package_data=True,
install_requires=[
'Flask>=3.0.0',
'Flask-SocketIO>=5.3.0',
'redis>=5.0.0',
'watchdog>=4.0.0',
'psutil>=5.9.0',
],
entry_points={
'console_scripts': [
'ransomware-detector=run:main',
],
},
author=__author__,
description=__description__,
license=__license__,
)