forked from RosettaCommons/RFdiffusion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (39 loc) · 913 Bytes
/
pyproject.toml
File metadata and controls
41 lines (39 loc) · 913 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
[project]
name = "rfdiffusion"
description="RFdiffusion is an open source method for protein structure generation."
authors = [
{name = "Rosetta Commons"}
]
urls = {Homepage = "https://github.com/RosettaCommons/RFdiffusion"}
version = "1.1.0"
requires-python = ">=3.9,<3.12"
dependencies = [
"configparser>=7.2.0",
"decorator>=5.1.0",
"e3nn>=0.3.3",
"hydra-core>=1.3.0",
"icecream",
"jedi",
"matplotlib>3.0.0",
"networkx>=2.1",
"numpy>2.0.0",
"omegaconf",
"opt_einsum",
"pandas>=2.3.0",
"pydantic>=2.0",
"pynvml>=11.0.0",
"pyrsistent>=0.20.0",
"pyyaml>=6.0.2",
"scipy>=1.10.0",
"se3-transformer",
"torch==2.5.1",
"torchaudio==2.5.1",
"torchdata==0.8.0",
"torchvision==0.20.1",
"tqdm",
"wandb>=0.12.0"
]
[project.scripts]
run-inference = "scripts.run_inference:main"
[tool.setuptools]
packages = ["rfdiffusion"]