-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 1.09 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
[project]
name = "proteogram"
version = "0.0.3"
description = "Protein structure to image manipulation and analysis."
requires-python = ">=3.11"
dependencies = [
"biopython>=1.8",
"matplotlib>=3.6",
"MDAnalysis[analysis,extra_formats,parallel]>=2.10.0",
"numpy>=1.26",
"openmm>=8.4",
"pandas>=3.0",
"pdbfixer @ git+https://github.com/openmm/pdbfixer@94cfa4c",
"pillow>=12.1",
"torch>=2.2",
"torchvision>=0.17",
"torchsummary>=1.5",
"kmeans-pytorch>=0.3",
"tqdm>=4.67",
"psutil>=7.2.2",
"objgraph>=3.6.2",
"PyYAML>=6.0",
"pyrotein @ git+https://github.com/carbonscott/pyrotein.git@main",
]
[project.optional-dependencies]
cuda12 = [
"openmm==8.4.0",
"nvidia-cuda-nvcc-cu12==12.9.86",
"openmm-cuda-12==8.4.0.post2"
]
test = ["pytest", "pytest-cov"]
notebook = [
"jupyterlab>=4.2.5",
"nglview>=3.1.4",
"rcsbsearchapi>=1.5.1"
]
[tool.setuptools.packages.find]
# Exclude patterns should match the full package name
exclude = ["assets", "docs", "paper", "notebooks", "scripts", "tmp"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"