-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
48 lines (43 loc) · 1.49 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "drtransformer"
description = "Heuristic cotranscriptional folding using the nearest neighbor energy model."
authors = [{name = "Stefan Badelt", email = "bad-ants-fleet@posteo.eu"}]
readme = "README.md"
keywords = ["cotranscriptional folding", "RNA", "secondary structure"]
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.8"
dependencies = [
"packaging",
"numpy",
"scipy",
"matplotlib",
]
dynamic = ["version"]
[project.scripts]
DrTransformer = "drtransformer.drtransformer:main"
DrPlotter = "drtransformer.plotting:main"
## The following scripts are not necessarily well maintained,
## but certainly helpful if you want to coarse-grain, simulate,
## or use the findpath function of DrTransformer.
#DrFindpath = "drtransformer.rnafolding:call_findpath_exe"
#DrCoarseGrain = "drtransformer.rnafolding:top_down_coarse_graining_exe"
#DrSimulate = "drtransformer.linalg:main"
[project.optional-dependencies]
dev = [
"pytest",
]
[project.urls]
Home = "https://github.com/ViennaRNA/drtransformer"