-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.43 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "simplefold"
version = "0.1.0"
description = "Folding proteins with SimpleFold."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Yuyang Wang", email = "yuyangw@apple.com" },
{ name = "Miguel Angel Bautista Martin", email = "mbautistamartin@apple.com" }
]
dependencies = [
"lightning==2.5.2",
"biopython==1.85",
"hydra-colorlog==1.2.0",
"mediapy==1.0.2",
"ipykernel==6.22.0",
"ipyvtklink==0.2.3",
"gemmi==0.7.3",
"biotite==1.2.0",
"rdkit==2025.3.5",
"gemmi==0.7.3",
"p-tqdm==1.4.2",
"einops==0.8.1",
"mashumaro==3.16",
"ihm==2.7",
"modelcif==1.4",
"dm-tree==0.1.9",
"click==8.2.1",
"timm==1.0.19",
"py3Dmol==2.5.2",
"scikit-learn==1.7.1",
"pandas==2.3.1",
"seaborn==0.13.2",
]
[project.urls]
Homepage = "https://github.com/apple/ml-simplefold"
# Optional: create a CLI command `simplefold` that calls simplefold/cli.py:main()
[project.scripts]
simplefold = "simplefold.cli:main"
# Tell hatchling where your packages live when using src layout:
[tool.hatch.build.targets.wheel]
packages = ["src/simplefold"]
# Tell setuptools to include YAML files from configs
[tool.setuptools.packages.find]
where = ["src"]
include = ["simplefold*"]
[tool.setuptools.package-data]
"simplefold.configs" = ["**/*.yaml"]