-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (41 loc) · 1019 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (41 loc) · 1019 Bytes
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
[tool.poetry]
name = "mhc-ii-pred"
version = "0.1.0"
description = ""
authors = ["Guy Zylberberg <guyzyl@gmail.com>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{include = "mhc_ii_pred"}]
[tool.poetry.dependencies]
python = "^3.8"
pytorch-lightning = "^1.9.3"
torch = "^1.13.1"
typer = "^0.7.0"
wandb = "^0.13.10"
numpy = "^1.24.2"
torchmetrics = "^0.11.3"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
mypy = "^1.0.1"
pylint = "^2.16.2"
[tool.poetry.group.deepmhcii.dependencies]
ruamel-yaml = "^0.17.21"
logzero = "^1.7.0"
[tool.poetry.group.netmhc.dependencies]
pandas = "^2.0.0"
[tool.pylint.message_control]
disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"line-too-long",
]
[tool.mypy]
disallow_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
show_column_numbers = true
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"