forked from chandar-lab/AMPLIFY
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (34 loc) · 1.11 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "amplify"
version = "0.0.0"
description = "A transformer model for protein design"
requires-python = ">= 3.10"
dependencies = [
"torch>=2.2",
"accelerate>=0.27",
"deepspeed>=0.13",
"xformers>=0.0.24",
"transformers>=4.38",
"datasets>=2.17",
"wandb>=0.16",
"hydra-core>=1.3",
"numpy>1.20",
]
authors = [
{ name = "Quentin Fournier", email = "[email protected]" },
{ name = "Benjamin Schulz", email = "[email protected]" },
{ name = "Robert Vernon", email = "[email protected]" },
]
maintainers = [
{ name = "Quentin Fournier", email = "[email protected]" },
{ name = "Benjamin Schulz", email = "[email protected]" },
{ name = "Robert Vernon", email = "[email protected]" },
]
readme = "README.md"
license = { text = "MIT License" }
keywords = ["Machine Learning", "Large Language Models", "Protein Language Models"]
[project.optional-dependencies]
dev = ["sphinx", "black", "piccolo-theme", "pytest", "pytest-cov", "pytest-clarity", "xeger"]