-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 940 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import find_packages, setup
setup(
name="flowbench",
version="0.2.0",
author="PoSeiDon Team",
summary="""Flow-Bench is a benchmark dataset for anomaly detection techniques in computational workflows.
Flow-Bench contains workflow execution traces, executed on distributed infrastructure, that include systematically
injected anomalies (labeled), and offers both the raw execution logs and a more compact parsed version. In this
GitHub repository, apart from the logs and traces, you will find sample code to load and process the parsed data
using pytorch, as well as, the code used to parse the raw logs and events.""",
license="MIT",
author_email="anonymous",
packages=find_packages(exclude=["tests", "raw", "results", "log", "flowbench.egg-info"]),
extras_require={
'pyg': ['pytorch_geometric'],
'pygod': ['pygod'],
'pyod': ['pyod'],
}
)