-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 823 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
[build-system]
requires = ["setuptools >= 77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chebai-proteins"
version = "0.0.2"
description = "Repository for protein prediction and classification, built on top of the python-chebai codebase"
authors = []
readme = "README.md"
license = { text = "AGPL-3.0" }
requires-python = ">=3.10, <3.13"
dependencies = [
"chebai[dev] @ git+https://github.com/ChEB-AI/python-chebai.git",
"biopython",
"fair-esm",
]
[project.optional-dependencies]
dev = ["black", "isort", "pre-commit"]
plot = ["matplotlib", "seaborn"]
wandb = ["wandb"]
[tool.setuptools]
include-package-data = true
license-files = ["LICEN[CS]E*"]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*"]
[tool.setuptools.package-data]
"*" = ["**/*.txt", "**/*.json"]