File size: 687 Bytes
2bbc43c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from setuptools import setup, find_packages

setup(
    name="flash-crash-watchdog",
    version="0.4.0",
    description="Real-time flash-crash detector on limit-order-book streams",
    author="Z.ai Quant Research",
    license="Apache-2.0",
    python_requires=">=3.11",
    packages=find_packages(),
    install_requires=[
        "numpy>=1.24",
        "pandas>=2.0",
        "scipy>=1.10",
        "scikit-learn>=1.3",
        "torch>=2.1",
        "websockets>=12.0",
        "pyarrow>=14.0",
        "pyyaml>=6.0",
        "joblib>=1.3",
    ],
    entry_points={
        "console_scripts": [
            "flash-crash-watchdog=flash_crash_watchdog.cli:main",
        ],
    },
)