-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 1.11 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "proteusAI"
version = "0.1.1"
requires-python = ">= 3.8"
description = "ProteusAI is a python package designed for AI driven protein engineering."
readme = "README.md"
dependencies = [
"torch==2.4.1",
"torch_geometric",
"torch-scatter",
"uvicorn",
"asgiref",
"starlette",
#"pdbfixer",
"shiny",
"pandas",
"numpy",
"requests",
"scipy",
"fair-esm",
"matplotlib",
"biopython",
"biotite",
"scikit-learn",
"optuna",
"seaborn",
"plotly",
"openpyxl",
"py3Dmol",
"gpytorch",
"openmm",
"umap-learn",
"hdbscan",
"proteusAI",
#"pdbfixer @ git+https://github.com/openmm/pdbfixer@1.9"
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-book-theme",
"myst-nb",
"ipywidgets",
"sphinx-new-tab-link!=0.2.2",
"jupytext",
]
dev = ["black", "ruff", "pytest", "flake8", "flake8-import-order", "flake8-builtins", "flake8-bugbear"]
# Handle imports with flake8
[tool.flake8]
max-line-length = 88
import-order-style = "google"
application-import-names = ["proteusAI"]