-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 843 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
[project]
name = "arnie"
version = "0.2.7"
authors = [
{ name="Das Lab", email="thedaslab@stanford.edu" },
]
description = "A Python utility library to estimate, compare, and reweight RNA energetics across many secondary structure algorithms."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["RNA", "RNA structure prediction", "Bioinformatics"]
dependencies = [
"numpy>=1.15",
"scipy>=1.5.0",
"matplotlib>=3.0.0"
]
[project.urls]
"Homepage" = "https://github.com/DasLab/arnie"
"Documentation" = "https://daslab.github.io/arnie"
"Bug Tracker" = "https://github.com/DasLab/arnie/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"