-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (72 loc) · 2.15 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (72 loc) · 2.15 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
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "FRIdata"
version = "0.1.0"
description = "Generate sequences, coordinates, distograms, and embeddings from protein structures at scale."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "BSD-3-Clause" }
authors = [{ name = "Tomasz Lab" }]
keywords = ["bioinformatics", "protein-structure", "dask", "dataset"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
# Core dependencies. Everything needed for sequences, coordinates and distograms.
# Heavy ML dependencies (torch/esm/transformers) live in the [embeddings] extra so a
# default install stays lightweight — see optional-dependencies below.
dependencies = [
"foldcomp",
"pydantic>=2.8.2",
"scipy>=1.14.0",
"h5py",
"matplotlib",
"biotite>=0.41.2",
"numpy>=1.26.4,<1.27.0",
"genson",
"beautifulsoup4",
"biopython",
"dask>=2024.4.2,<2025.0.0",
"dask[dataframe]",
"distributed>=2024.4.2,<2025.0.0",
"python-dotenv",
"tables",
"bokeh>=2.4.2,<3.0.0",
"tqdm",
]
[project.optional-dependencies]
# Embedding generation. Installs torch/esm/transformers from the default PyPI index
# (CUDA-enabled on Linux x86_64). For a specific CUDA version or CPU-only wheels on
# Linux, use scripts/install_pytorch.sh or a manual `--index-url` install afterwards.
embeddings = [
"torch",
"esm",
"transformers",
]
test = [
"pytest",
"pytest-order",
]
dev = [
"FRIdata[embeddings,test]",
"build",
"twine",
]
[project.urls]
Homepage = "https://github.com/Tomasz-Lab/FRIdata"
Repository = "https://github.com/Tomasz-Lab/FRIdata"
Issues = "https://github.com/Tomasz-Lab/FRIdata/issues"
[project.scripts]
fridata = "fridata:main"
[tool.setuptools]
# fridata.py is a single-module at project root; install as py-module
py-modules = ["fridata"]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["toolbox*"]