forked from cody-mar10/protein_set_transformer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
55 lines (48 loc) · 1.3 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ptn-set-transformer"
version = "2.0.0"
authors = [{ name = "Cody Martin", email = "[email protected]" }]
description = "Training and inference on protein sets (genomes)"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9,<3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"torch>=2",
"transformers>=4.28",
"lightning>=2",
"tables",
"torch_geometric",
"torch_scatter",
"numpy<2.0",
"more-itertools",
"lightning-cv[tune]>=1.0",
"jsonargparse[signatures]>=4.28",
"dataclass-wizard>=0.28",
"einops",
"requests",
"tqdm",
"fair-esm==2.0.0",
"scikit-learn",
]
[project.optional-dependencies]
tune = ["optuna>=3.1", "sqlite-utils"]
[project.scripts]
pst = "pst:main.main"
chtc-utils = "pst:utils.chtc.main.main"
[project.urls]
"Homepage" = "https://github.com/cody-mar10/protein_set_transformer"
"Bug Tracker" = "https://github.com/cody-mar10/protein_set_transformer/issues"
[tool.ruff]
src = ["src"]
line-length = 90
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"] # allow unused imports in `__init__.py`
[tool.coverage.run]
plugins = ["covdefaults"]