-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (43 loc) · 1.21 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
[project]
name = "msa-pairformer"
version = "1.0.2"
description = "MSA Pairformer model repository"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Yo Akiyama", email = "yo_aki@mit.edu"}
]
maintainers = [
{name = "Yo Akiyama", email = "yo_aki@mit.edu"}
]
dependencies = [
"torch>=2.5.0",
"numpy>=1.26,<2.0",
"einops>=0.8.0",
"einx>=0.3.0",
"jaxtyping>=0.2.38",
"tqdm>=4.67.1",
"biopython>=1.85",
"scipy>=1.8.0",
"matplotlib>=3.5.1",
"scikit-learn>=0.23.2",
"environs>=14.5.0",
"cuequivariance_ops_cu12>=0.7.0; sys_platform == 'linux'",
"cuequivariance_ops_torch_cu12>=0.7.0; sys_platform == 'linux'",
"cuequivariance_torch>=0.7.0; sys_platform == 'linux'",
"cuequivariance>=0.7.0; sys_platform == 'linux'"
]
[tool.setuptools]
package-dir = {"" = "."}
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["MSA_Pairformer*"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["MSA_Pairformer"]
[tool.hatch.build.targets.sdist]
only-include = ["MSA_Pairformer", "README.md", "LICENSE", "MIT_LICENSE", "pyproject.toml"]