forked from xai-org/x-algorithm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 813 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 813 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "bdsm"
version = "2.0.0"
description = "Behavioral inauthentic-account detection: sequence-of-actions transformer, task heads, and streaming enforcement pipeline."
requires-python = ">=3.10"
dependencies = [
"numpy",
"protobuf>=6.31",
"confluent-kafka",
"redis",
"pyarrow",
"pyyaml",
"zstandard",
"requests",
"google-cloud-bigquery",
"google-cloud-bigquery-storage",
]
[project.optional-dependencies]
gpu = [
"optax",
]
training = [
"scikit-learn",
]
dev = [
"pytest",
"ruff",
]
[tool.setuptools]
py-modules = []
packages = ["runtime", "runtime.proto_gen", "training"]
[tool.setuptools.package-data]
runtime = ["*.yaml", "*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 100