forked from oxpig/STCRpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 946 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 946 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "stcrpy"
version = "1.0.5"
description = "Set of methods to parse, annotate, and calculate features of TCR structures"
readme = "README.md"
license-files = [
"LICENCE",
"stcrpy/tcr_geometry/TCRCoM_LICENCE",
]
maintainers = [
{name = "Nele Quast", email = "quast@stats.ox.ac.uk"}
]
requires-python = ">=3.10"
dependencies = [
"biopython",
"numpy==1.26.4", # required by DockQ
"lxml",
"openbabel-wheel==3.1.1.21",
"rdkit",
"anarci-mhc",
"pandas",
"matplotlib",
"scipy",
"requests",
"scikit-learn",
"DockQ",
]
[project.optional-dependencies]
ml_datasets = [
"einops",
"torch",
"torch_geometric",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
exclude = ["test", "test.*"]
[tool.setuptools.package-data]
stcrpy = ["tcr_geometry/reference_data/*", ]