-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "federated-admet"
version = "0.1.0"
description = "Federated learning for ADMET prediction with GNNs, plus a membership inference attack demo"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "DoctorDean"}]
dependencies = [
"flwr[simulation]>=1.8.0,<1.21.0",
"torch>=2.1.0",
"torch-geometric>=2.4.0",
"PyTDC>=0.4.0",
"rdkit>=2023.9.1",
"numpy>=1.24",
"pandas>=2.0",
"scikit-learn>=1.3",
"scipy>=1.11",
"pyyaml>=6.0",
"tqdm>=4.65",
"matplotlib>=3.7",
"dp-accounting>=0.4",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
"ruff>=0.1.0",
"ipykernel>=6.25",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "SIM"]
ignore = ["E501"]