-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.42 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools >= 77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chebai"
version = "1.2.0"
description = "ChEBai is a deep learning library designed for the integration of deep learning methods with chemical ontologies, particularly ChEBI."
authors = [
{ name = "MGlauer", email = "martin.glauer@ovgu.de" }
]
maintainers = [
{ name = "sfluegel05", email = "simon.fluegel@uni-osnabrueck.de"}
]
readme = "README.md"
license = { text = "AGPL-3.0" }
requires-python = ">=3.10,<3.13"
dependencies = [
"numpy",
"pandas",
"torch",
"transformers",
"pysmiles==1.1.2",
"rdkit==2024.3.6",
"lightning==2.5.1",
"chembl_structure_pipeline",
]
[project.optional-dependencies]
plot = ["matplotlib", "seaborn"]
wandb = ["wandb"]
dev = [
"networkx",
"requests",
"scikit-learn",
"scipy",
"fastobo",
"selfies",
"jsonargparse[signatures]>=4.17",
"omegaconf",
"deepsmiles",
"iterative-stratification",
"torchmetrics",
]
linters = [
"ruff",
"pre-commit",
]
[tool.setuptools]
include-package-data = true
license-files = ["LICEN[CS]E*"]
[tool.setuptools.packages.find]
where = ["."]
include = ["chebai*"]
[tool.setuptools.package-data]
# Include essential config files and preprocessing tokens
"chebai" = [
"preprocessing/bin/**/*.txt",
"preprocessing/bin/**/*.json",
"configs/**/*.yml",
"configs/**/*.yaml",
]