-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.33 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "BPfold"
dynamic = ["version"]
readme = "README.md"
authors = [
{ name="Heqin Zhu", email="zhuheqin1@gmail.com" },
]
description = "Deep generalizable prediction of RNA secondary structure via base pair motif energy."
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
# "numpy >= 1.24.3",
# "fastai >= 2.7.12",
# "einops >= 0.7.0",
# "scikit-learn >= 1.3.0",
# "torchmetrics >= 1.0.3",
# "tqdm >= 4.66.1",
# "pyyaml >= 6.0.1",
# "scikit-image >= 0.21.0",
# "scipy >= 1.10.1",
# "torch >= 2.0.1",
]
keywords = ["RNA", "secondary structure", "fold"]
[project.urls]
Homepage = "https://github.com/heqin-zhu/BPfold"
Issues = "https://github.com/heqin-zhu/BPfold/issues"
[project.scripts]
BPfold = "BPfold.predict:main"
BPfold_eval = "BPfold.evaluate:main"
BPfold_kit = "BPfold.kit:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"BPfold.configs" = ["*.yaml"]
"BPfold.paras" = ["key.energy"]
[tool.setuptools.dynamic]
version = {attr = "BPfold.__version__"} # any module attribute compatible with ast.literal_eval