-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (52 loc) · 1.08 KB
/
pyproject.toml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = [
"setuptools>=42",
"setuptools_scm[toml]",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "fse-baro"
description = "BARO: Robust Root Cause Analysis for Microservices via Multivariate Bayesian Online Change Point Detection"
authors = [{name = "Luan Pham", email = "phamquiluan@gmail.com"}]
license = {file = "LICENSE"}
dependencies = [
"numpy",
"pandas",
"scikit-learn",
"pytest",
"tqdm",
"requests",
"matplotlib",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/phamquiluan/baro/"
Issues = "https://github.com/phamquiluan/baro/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-dir]
baro = "baro"
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''