-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
36 lines (34 loc) · 1.13 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.26.*",
]
authors = [
{ name = "Quentin Fournier", email = "quentin.fournier@mila.quebec" },
{ name = "Benjamin Schulz", email = "bschul02@amgen.com" },
{ name = "Robert Vernon", email = "rverno01@amgen.com" },
]
maintainers = [
{ name = "Quentin Fournier", email = "quentin.fournier@mila.quebec" },
{ name = "Benjamin Schulz", email = "bschul02@amgen.com" },
{ name = "Robert Vernon", email = "rverno01@amgen.com" },
]
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"]