-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (49 loc) · 1.33 KB
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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "graphshield-fraud"
version = "0.2.2"
description = "Leakage-safe temporal graph fraud detection reference project"
readme = "README.md"
requires-python = ">=3.10,<3.13"
license = "MIT"
license-files = ["LICENSE", "THIRD_PARTY_NOTICES.md"]
authors = [{name = "nika"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=1.26,<3",
]
[project.urls]
Homepage = "https://nikashen.github.io/GraphShield-Fraud/"
Repository = "https://github.com/nikashen/GraphShield-Fraud"
Issues = "https://github.com/nikashen/GraphShield-Fraud/issues"
[project.optional-dependencies]
train = [
"scikit-learn>=1.5,<2",
"torch>=2.2,<3",
]
dev = [
"httpx>=0.27,<1",
"pytest>=8,<9",
"scikit-learn>=1.5,<2",
"torch>=2.2,<3",
]
serve = ["fastapi>=0.115,<1", "uvicorn[standard]>=0.30,<1"]
[project.scripts]
graphshield = "graphshield.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
graphshield = ["web/*"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]