forked from rmrao/evo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 995 Bytes
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 995 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "evo"
version = "0.0.1"
description = "A monorepo for protein utilities"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pandas",
"numpy",
"tqdm",
"biopython",
"numba",
"pyarrow",
"matplotlib",
"transformers",
"tape-proteins @ git+https://github.com/songlab-cal/tape@master",
"fair-esm @ git+https://github.com/facebookresearch/esm@main",
# --------- Development Tools --------- #
"rich",
"rootutils",
"abnumber>=0.4.4",
"pre-commit>=4.2.0",
"netam>=0.2.1",
]
[dependency-groups]
dev = [
"pre-commit>=3.5.0",
"pytest>=7.4.2",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["evo*"]
[tool.uv.sources]
netam = { git = "https://github.com/matsengrp/netam.git" }
[tool.black]
line-length = 100
include = '\.pyi?$'
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true