forked from mims-harvard/TxGNN
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (50 loc) · 1.53 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
58
59
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "TxGNN"
dynamic = ["version", "readme"]
description = "TxGNN"
requires-python = ">=3.8,<3.12"
license = {text = "MIT"}
authors = [{name = "TxGNN Team", email = "kexinh@stanford.edu"}]
urls = {Homepage = "https://github.com/mims-harvard/TxGNN"}
dependencies = [
"numpy",
"pandas",
"tqdm",
"matplotlib",
"scikit-learn",
"goatools",
"requests",
"scipy",
"torch @ https://download.pytorch.org/whl/cu124/torch-2.4.0%2Bcu124-cp311-cp311-linux_x86_64.whl ; sys_platform == \"linux\" and python_full_version == \"3.11.*\"",
"torch>=2.4,<2.5 ; sys_platform != \"linux\" or python_full_version != \"3.11.*\"",
"dgl==2.4.0+cu124 ; sys_platform == \"linux\" and python_full_version == \"3.11.*\"",
"dgl>=2.4,<2.5 ; sys_platform != \"linux\" or python_full_version != \"3.11.*\"",
"torch-geometric",
]
[tool.setuptools.dynamic]
version = {attr = "txgnn.version.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
exclude = ["test"]
[tool.setuptools]
include-package-data = true
[tool.ruff]
line-length = 100
target-version = "py311"
exclude = ["*.ipynb"]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.ruff.lint.isort]
combine-as-imports = true
force-single-line = false
known-first-party = ["txgnn"]
[tool.uv]
environments = ["sys_platform == 'linux' and platform_machine == 'x86_64' and python_full_version == '3.11.*'"]
[dependency-groups]
dev = [
"ruff",
]