-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 896 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "run_simplefold"
version = "0.0.1"
authors = [
{ name = "Andrey Rozenberg", email = "alephreish@gmail.com" }
]
description = "SimpleFold wrapper"
readme = "README.md"
requires-python = ">=3.10, <3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3",
"Operating System :: OS Independent",
]
dependencies = [
"gemmi==0.7.3",
"tqdm==4.67.2",
"biopython==1.85",
"torch==2.10.0",
"torchvision==0.25.0"
]
[project.urls]
"Homepage" = "https://github.com/BejaLab/run_simplefold"
"Bug Tracker" = "https://github.com/BejaLab/run_simplefold/issues"
[project.scripts]
simplefold_init = "run_simplefold:init_cli"
simplefold_run = "run_simplefold:run_cli"
simplefold_select = "run_simplefold:select_cli"