forked from phamquiluan/RCAEval
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 748 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 748 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
from os.path import join, dirname, abspath
from setuptools import setup
# parse requirements.txt to requirement list
with open("requirements.txt") as f:
requirements = f.read().splitlines()
with open("requirements_rcd.lock") as f:
rcd_requirements = f.read().splitlines()
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="RCAEval",
version="1.2.0",
packages=["RCAEval"],
include_package_data=True,
description="RCAEval: A Benchmark for Root Cause Analysis of Microservice Systems",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[],
extras_require={"default": requirements, "rcd": rcd_requirements},
)